blob: e0604221c511f0d87480846cb76e868735fdc8e6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
{
"name": "Vimium",
"version": "1.15",
"description": "The Hacker's Browser. Vimium provides keyboard shortcuts for navigation and control in the spirit of Vim.",
"background_page": "background_page.html",
"options_page": "options.html",
"permissions": [
"tabs"
],
"content_scripts": [
{
"matches": ["http://*/*", "https://*/*"],
"js": ["lib/keyboardUtils.js",
"lib/clipboard.js",
"linkHints.js",
"vimiumFrontend.js"
],
"run_at": "document_start"
}
]
}
|