-
Notifications
You must be signed in to change notification settings - Fork 3
/
manifest.json
81 lines (73 loc) · 2.07 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"manifest_version": 2,
"name": "VVimpulation",
"version": "1.5",
"description": "Provides keyboard navigation like Vim.",
"applications": {
"gecko": {
"id": "{b8b81a2f-da03-461c-a8cd-377d84f6d5b7}",
"strict_min_version": "58.0"
}
},
"icons": {
"48": "icons/icon48.png",
"96": "icons/icon96.png"
},
"permissions": [
"bookmarks",
"clipboardRead",
"clipboardWrite",
"downloads",
"find",
"history",
"sessions",
"storage",
"tabs",
"webNavigation",
"<all_urls>"
],
"background": {
"scripts": [
"common/utils.js",
"common/port.js",
"background/default_options.js",
"background/command.js",
"background/macro.js",
"background/wimpulation.js"
]
},
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": [
"common/utils.js",
"common/dom_utils.js",
"common/scroll.js",
"common/port.js",
"content_scripts/hover_killer.js",
"content_scripts/command.js",
"content_scripts/frontend_command.js",
"content_scripts/hint_command.js",
"content_scripts/frame_info.js",
"content_scripts/insert_mode.js",
"content_scripts/hint_mode.js",
"content_scripts/visual_mode.js",
"content_scripts/console_mode.js",
"content_scripts/suspend_mode.js",
"content_scripts/wimpulation.js"
],
"css": ["content_scripts/wimpulation.css"],
"match_about_blank": true,
"all_frames": true,
"run_at": "document_start"
}
],
"options_ui": {
"page": "options/options.html",
"browser_style": false,
"open_in_tab": true
},
"web_accessible_resources": [
"console/console.html"
]
}