blob: 038098afb0c71ddba8440edbfd400e1528a0129b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
{
"name": "Vimium",
"version": "1.0",
"description": "The Hacker's Browser.",
"background_page": "background_page.html",
"options_page": "settings.html",
"permissions": [
"tabs"
],
"content_scripts": [
{
"matches": ["http://*/*", "https://*/*"],
"js": ["vimiumFrontend.js", "linkHints.js"],
"run_at": "document_start"
}
]
}
|