I'm developing an extension page action that works in certain URLs with popup, I wonder if you can open the popup automatically when the User access the specific site?
Asked
Active
Viewed 1,223 times
1 Answers
-1
Define the 'matches' in the manifest.json file like the following:
"matches": ["http://www.site.ext/*"]
Then the content script of your extension will be loaded when the specific site is visited and you can do almost everything.
For more information refer Chrome -> Content Scripts

Alexander Dayan
- 2,846
- 1
- 17
- 30
-
That's not even remotely what the OP is asking for. – Marco Bonelli Jan 08 '15 at 10:21