-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathmanifest.json
More file actions
52 lines (52 loc) · 1.13 KB
/
manifest.json
File metadata and controls
52 lines (52 loc) · 1.13 KB
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": "__MSG_addonName__",
"default_locale": "en_US",
"description": "__MSG_addonDescription__",
"author": "__MSG_addonAuthorsList__",
"version": "1.0",
"homepage_url": "http://github.com/wisniewskit/user-agent-alter",
"applications": {
"gecko": {
"id": "user-agent-alter@tanrei.ca",
"strict_min_version": "57"
}
},
"icons": {
"16": "icons/firefox.svg",
"32": "icons/firefox.svg",
"48": "icons/firefox.svg",
"96": "icons/firefox.svg",
"128": "icons/firefox.svg"
},
"permissions": [
"cookies",
"clipboardWrite",
"contextualIdentities",
"storage",
"tabs",
"webNavigation",
"webRequest",
"webRequestBlocking",
"<all_urls>"
],
"background": {
"scripts": [
"platform.js",
"background.js"
]
},
"browser_action": {
"browser_style": true,
"default_icon": "icons/firefox.svg",
"default_title": "__MSG_addonName__",
"default_popup": "popup/popup.html"
},
"options_ui": {
"open_in_tab": true,
"page": "options/options.html"
},
"web_accessible_resources": [
"icons/*.svg"
]
}