blob: 8ca8579b6bb4128d6808cc1f616d6a8df5db9aa8 [file] [log] [blame]
{
"name": "A browser action with a popup that automatically clicks links matching a regexp",
"description": "Follow links",
"version": "1.0",
"permissions": [
"tabs", "http://*/*", "https://*/*"
],
"background": { "scripts": ["background.js"] },
"browser_action": {
"default_title": "Follow links.",
"default_icon": "icon.png",
"default_popup": "popup.html"
},
"content_scripts": [
{
"matches": ["http://*/*", "https://*/*"],
"js": ["content.js"]
}
],
"manifest_version": 2
}