1
2
3
4
5
6
7
8
9
10
11
|
{
"manifest_version": 2,
"name": "Vimium",
"version": "1.54",
"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",
|
|
|
1
2
3
4
5
6
7
8
9
10
11
|
{
"manifest_version": 2,
"name": "Vimium",
"version": "1.57",
"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",
|
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
"sessions",
"notifications",
"webNavigation",
"<all_urls>"
],
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": ["lib/utils.js",
"lib/keyboard_utils.js",
"lib/dom_utils.js",
"lib/rect.js",
"lib/handler_stack.js",
"lib/settings.js",
|
>
>
|
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
"sessions",
"notifications",
"webNavigation",
"<all_urls>"
],
"content_scripts": [
{
"_comment":
"IMPORTANT: All resources listed here must also be listed in ./pages/vimium_resources.html.",
"matches": ["<all_urls>"],
"js": ["lib/utils.js",
"lib/keyboard_utils.js",
"lib/dom_utils.js",
"lib/rect.js",
"lib/handler_stack.js",
"lib/settings.js",
|
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
|
"content_scripts/mode_key_handler.js",
"content_scripts/mode_visual.js",
"content_scripts/hud.js",
"content_scripts/vimium_frontend.js"
],
"css": ["content_scripts/vimium.css"],
"run_at": "document_start",
"all_frames": true
},
{
"matches": ["file:///", "file:///*/"],
"css": ["content_scripts/file_urls.css"],
"run_at": "document_start",
"all_frames": true
}
|
|
>
|
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
|
"content_scripts/mode_key_handler.js",
"content_scripts/mode_visual.js",
"content_scripts/hud.js",
"content_scripts/vimium_frontend.js"
],
"css": ["content_scripts/vimium.css"],
"run_at": "document_start",
"all_frames": true,
"match_about_blank": true
},
{
"matches": ["file:///", "file:///*/"],
"css": ["content_scripts/file_urls.css"],
"run_at": "document_start",
"all_frames": true
}
|