forked from ueokande/vim-vixen
-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
52 lines (52 loc) · 988 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"manifest_version": 2,
"name": "Vim Vixen",
"description": "Vim Vixen",
"version": "0.24",
"icons": {
"48": "resources/icon_48x48.png",
"96": "resources/icon_96x96.png"
},
"applications": {
"gecko": {
"id": "[email protected]"
}
},
"content_scripts": [
{
"all_frames": true,
"matches": [ "<all_urls>" ],
"js": [ "build/content.js" ],
"run_at": "document_end",
"match_about_blank": true
}
],
"background": {
"scripts": [
"build/background.js"
]
},
"permissions": [
"history",
"sessions",
"storage",
"tabs",
"clipboardRead",
"notifications",
"bookmarks",
"browserSettings"
],
"web_accessible_resources": [
"build/console.html",
"build/console.js"
],
"options_ui": {
"page": "build/settings.html"
},
"browser_action": {
"default_icon": {
"32": "resources/enabled_32x32.png"
},
"default_title": "Vim Vixen"
}
}