summaryrefslogtreecommitdiff
path: root/deps/v8/tools/link_clicker.extension/manifest.json
blob: 8ca8579b6bb4128d6808cc1f616d6a8df5db9aa8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
  "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
}