forked from philc/vimium
-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
31 lines (31 loc) · 834 Bytes
/
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
{
"name": "Vimium",
"version": "1.27",
"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_page": "background_page.html",
"options_page": "options.html",
"permissions": [
"tabs",
"bookmarks",
"http://*/*",
"https://*/*"
],
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": ["lib/utils.js",
"lib/keyboardUtils.js",
"lib/clipboard.js",
"linkHints.js",
"vimiumFrontend.js",
"completionDialog.js",
"bookmarks.js"
],
"run_at": "document_start",
"all_frames": true
}
]
}