forked from philc/vimium
-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
51 lines (51 loc) · 1.43 KB
/
manifest.json
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{
"manifest_version": 2,
"name": "Vimium",
"version": "1.43",
"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": {
"scripts": [
"lib/utils.js",
"background_scripts/commands.js",
"lib/clipboard.js",
"background_scripts/settings.js",
"background_scripts/completion.js",
"background_scripts/marks.js",
"background_scripts/main.js"
]
},
"options_page": "pages/options.html",
"permissions": [
"tabs",
"bookmarks",
"history",
"clipboardRead",
"<all_urls>"
],
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": ["lib/utils.js",
"lib/keyboard_utils.js",
"lib/dom_utils.js",
"lib/handler_stack.js",
"lib/clipboard.js",
"content_scripts/link_hints.js",
"content_scripts/vomnibar.js",
"content_scripts/scroller.js",
"content_scripts/marks.js",
"content_scripts/vimium_frontend.js"
],
"css": ["content_scripts/vimium.css"],
"run_at": "document_start",
"all_frames": true
}
],
"browser_action": {
"default_icon": "icons/browser_action_disabled.png",
"default_popup": "pages/popup.html"
}
}