aboutsummaryrefslogtreecommitdiffstats
path: root/manifest.json
blob: e100f42d241b1d5a2a1deb1a3f4515f743409007 (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
28
29
30
31
{
  "name": "Vimium",
  "version": "1.22",
  "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",
	"bookmarks",
    "http://*/*",
    "https://*/*"
  ],
  "content_scripts": [
    {
      "matches": ["<all_urls>"],
      "js": ["lib/utils.js",
             "lib/keyboardUtils.js",
             "lib/clipboard.js",
             "linkHints.js",
             "vimiumFrontend.js",
             "completionDialog.js",
             "bookmarks.js"
            ],
      "run_at": "document_start",
      "all_frames": true
    }
  ]
}