Now I want to run a chrome application from the chrome extension (in fact, I want to run a chrome application through a URL that I am not going to do). That is the question. I added
"permissions": [
"management"
],
in the extension manifest. However, when I want to run the application using
chrome.management.launchApp("XXXX", function() {});
the console says
Uncaught TypeError: cannot read property 'launchApp' from undefined
So I wonder why I cannot use the chrome control API. Thank!
source
share