forked from hbt/mouseless
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
121 lines (121 loc) · 3.22 KB
/
Copy pathmanifest.json
File metadata and controls
121 lines (121 loc) · 3.22 KB
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
{
"manifest_version": 2,
"name": "WebKey",
"version": "2.0.0",
"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"
},
"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": "ChromeVim",
"default_popup": "pages/popup.html"
},
"author": "Jake Eaton, metasong",
"permissions": [
"<all_urls>",
"webRequest",
"webRequestBlocking",
"tabs",
"management",
"history",
"bookmarks",
"storage",
"sessions",
"downloads",
"downloads.open",
"downloads.shelf",
"topSites",
"clipboardRead",
"clipboardWrite",
"webNavigation"
],
"chrome_url_overrides": {
"newtab": "newtab.html"
},
"background": {
"persistant": false,
"page": "background.html"
},
"content_scripts": [
{
"matches": ["<all_urls>", "chrome://*/*"],
"match_about_blank": true,
"js": [
"content_scripts/index.js",
"vendor/jquery.js",
"vendor/underscore-min.js",
"vendor/linkify.min.js",
"vendor/linkify-jquery.min.js",
"vendor/linkify-element.min.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/keys.js",
"content_scripts/clipboard.js",
"content_scripts/complete.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"
],
"css": ["content_scripts/main.css"],
"run_at": "document_start",
"all_frames": true
}
],
"options_page": "pages/options.html",
"web_accessible_resources": [
"cmdline_frame.html",
"content_scripts/*.js",
"content_scripts/*.mjs"
],
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}