forked from FirefoxBar/HeaderEditor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
50 lines (50 loc) · 1.13 KB
/
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
{
"name": "__MSG_extName__",
"short_name": "__MSG_extName__",
"version": null,
"description": "__MSG_description__",
"homepage_url": "https://he.firefoxcn.net",
"manifest_version": 2,
"icons": {
"128": "assets/images/128.png"
},
"permissions": [
"tabs",
"webRequest",
"webRequestBlocking",
"storage",
"*://*/*",
"unlimitedStorage"
],
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self';",
"background": {
"scripts": [
"assets/js/background.js"
]
},
"browser_action": {
"default_icon": {
"128": "assets/images/128.png"
},
"default_title": "__MSG_extButtonTitle__",
"default_popup": "popup.html"
},
"default_locale": "en",
"options_ui": {
"page": "options.html",
"open_in_tab": true
},
"__amo__browser_specific_settings": {
"gecko": {
"id": "[email protected]",
"strict_min_version": "77.0"
}
},
"__xpi__browser_specific_settings": {
"gecko": {
"id": "[email protected]",
"strict_min_version": "77.0",
"update_url": "https://ext.firefoxcn.net/header-editor/install/update.json"
}
}
}