Reputation: 131
I want to get the list of all the applications running in the background using a chrome extension. Is this possible?
Upvotes: 0
Views: 243
Reputation: 33306
You don't. There is no way to get a list of windows processes from Chrome.
You could use Native Messaging to run some other process with which you communicate to obtain that information. But, that would not be actually obtaining the information from Chrome. But it would permit you to obtain that information within a Chrome extension.
Upvotes: 1