aboutsummaryrefslogtreecommitdiffstats
path: root/manifest.json
blob: d49adfa28afbe677503a861199287cb13e90f130 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{
  "name": "Vimium",
  "version": "1.19",
  "description": "The Hacker's Browser. Vimium provides keyboard shortcuts for navigation and control in the spirit of Vim.",
  "icons": {  "16": "icons/icon16.png",
              "48": "icons/icon48.png",
             "128": "icons/icon128.png" },
  "background_page": "background_page.html",
  "options_page": "options.html",
  "permissions": [
    "tabs",
    "http://*/*",
    "https://*/*"
  ],
  "content_scripts": [
    {
      "matches": ["http://*/*", "https://*/*", "file://*/*", "ftp://*/*" ],
      "js": ["lib/keyboardUtils.js",
             "lib/clipboard.js",
             "linkHints.js",
             "vimiumFrontend.js"
            ],
      "run_at": "document_start",
      "all_frames": true
    }
  ]
}