I have a chrome extension. The task is to get a list of PWA's (installed from Chrome) that are running on the OS and fetch the launch URL's of all those PWA's. I am not able to find any API provided by chrome extensions to achieve this. Would be really helpful if someone can guide me in the right direction
Asked
Active
Viewed 457 times
1
-
@woxxom could you please guide me on this? – AbhinavHegde Jul 08 '21 at 14:32
-
1`chrome.management.getAll` should list all installed PWAs. Then you can use chrome.tabs.query to find the tabs. – wOxxOm Jul 08 '21 at 20:01