forked from philc/vimium
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmanifest.json
More file actions
27 lines (27 loc) · 723 Bytes
/
manifest.json
File metadata and controls
27 lines (27 loc) · 723 Bytes
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
{
"name": "Vimium",
"version": "1.22",
"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",
"http://*/*",
"https://*/*"
],
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": ["lib/keyboardUtils.js",
"lib/clipboard.js",
"linkHints.js",
"vimiumFrontend.js"
],
"run_at": "document_start",
"all_frames": true
}
]
}