mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
540 B
21 lines
540 B
{
|
|
"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
|
|
}
|
|
|