forked from 1995eaton/chromium-vim
-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
124 lines (124 loc) · 3.5 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
{
"manifest_version": 2,
"name": "cVim",
"version": "1.2.99",
"description": "An extension adding Vim-like bindings to Google Chrome",
"update_url": "https://clients2.google.com/service/update2/crx",
"icons": {
"128": "icons/128.png",
"48": "icons/48.png",
"16": "icons/16.png"
},
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self';",
"commands": {
"nextTab": {
"description": "Go to the next tab"
},
"previousTab": {
"description": "Go to the previous tab"
},
"togglecVim": {
"description": "Toggle the enabled state of cVim"
},
"toggleBlacklisted": {
"description": "Toggle the blacklist for the domain in the current tab"
},
"nextCompletionResult": {
"description": "Let Chrome use <C-n> for cncpcompletion setting (see Help file)"
},
"deleteBackWord": {
"description": "Let Chrome use <C-w> for the deleteBackWord insert mapping"
},
"closeTab": {
"description": "Close the current tab"
},
"reloadTab": {
"description": "Reload the current tab"
},
"newTab": {
"description": "Open a new tab to a blank page"
},
"restartcVim": {
"description": "Restart the background scripts (pages will need a refresh)"
},
"viewSource": {
"description": "View the page source"
}
},
"browser_action": {
"default_icon": {
"19": "icons/disabled.png",
"38": "icons/disabled-38.png"
},
"default_title": "cVim",
"default_popup": "pages/popup.html"
},
"author": "Jake Eaton",
"permissions": [
"<all_urls>",
"tabs",
"history",
"bookmarks",
"storage",
"sessions",
"downloads",
"topSites",
"downloads.shelf",
"clipboardRead",
"clipboardWrite",
"webNavigation"
],
"background": {
"persistant": false,
"scripts": [
"content_scripts/utils.js",
"content_scripts/cvimrc_parser.js",
"background_scripts/clipboard.js",
"background_scripts/bookmarks.js",
"background_scripts/sites.js",
"background_scripts/files.js",
"background_scripts/links.js",
"background_scripts/history.js",
"background_scripts/actions.js",
"background_scripts/main.js",
"background_scripts/options.js",
"background_scripts/sessions.js",
"background_scripts/popup.js",
"background_scripts/update.js",
"background_scripts/tab_creation_order.js",
"background_scripts/frames.js"
]
},
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": [
"content_scripts/cvimrc_parser.js",
"content_scripts/session.js",
"content_scripts/utils.js",
"content_scripts/dom.js",
"content_scripts/hints.js",
"content_scripts/bookmarks.js",
"content_scripts/command.js",
"content_scripts/keys.js",
"content_scripts/clipboard.js",
"content_scripts/complete.js",
"content_scripts/mappings.js",
"content_scripts/find.js",
"content_scripts/cursor.js",
"content_scripts/status.js",
"content_scripts/hud.js",
"content_scripts/visual.js",
"content_scripts/scroll.js",
"content_scripts/search.js",
"content_scripts/frames.js",
"content_scripts/messenger.js"
],
"css": ["content_scripts/main.css"],
"run_at": "document_start",
"all_frames": true
}
],
"options_page": "pages/options.html",
"web_accessible_resources": ["cmdline_frame.html"]
}