-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathmanifest.json
35 lines (35 loc) · 928 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
{
"name": "__MSG_extensionName__",
"short_name": "__MSG_extensionName__",
"description": "__MSG_extensionDescription__",
"version": "0.3.0",
"manifest_version": 2,
"background": {
"scripts": ["background.js"]
},
"default_locale": "en",
"browser_action": {
"default_icon": {
"16": "icons/zerowiki_icon_16.png",
"19": "icons/zerowiki_icon_19.png",
"24": "icons/zerowiki_icon_24.png",
"32": "icons/zerowiki_icon_32.png",
"38": "icons/zerowiki_icon_38.png"
},
"default_popup": "popup.html"
},
"icons": {
"16": "icons/zerowiki_icon_16.png",
"24": "icons/zerowiki_icon_24.png",
"32": "icons/zerowiki_icon_32.png",
"64": "icons/zerowiki_icon_64.png",
"128": "icons/zerowiki_icon_128.png",
"256": "icons/zerowiki_icon_256.png"
},
"permissions": [
"*://*.wikipedia.org/*",
"webRequest",
"webRequestBlocking",
"storage"
]
}