Reputation: 1427
I it possible to get the currently running chrome apps from a chrome extension background page ? I am able to get the list of installed apps, but how can I know what apps are now running ?
Upvotes: 0
Views: 868
Reputation: 361
I'm a little late, but chrome.debugger.getTargets() works. Just do that, then filter by type === 'other' and url.startsWith('chrome-extension').
Upvotes: 0
Reputation: 7779
Check this steps if this is the one you are looking for.
On your computer, open Chrome.
At the top right, click More or Settings.
Click More tools and then Task manager.
In the first column, look for items labeled "Background Page." You can see its details in the other columns.
Upvotes: 1