-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmanifest.json
More file actions
40 lines (34 loc) · 729 Bytes
/
manifest.json
File metadata and controls
40 lines (34 loc) · 729 Bytes
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
{
"manifest_version": 3,
"name": "__MSG_extensionName__",
"description": "__MSG_extensionDescription__",
"version": "0.1",
"default_locale": "en",
"browser_specific_settings": {
"gecko": {
"id": "cooked@addons.mozilla.org",
"strict_min_version": "115.0"
},
"gecko_android": {
"id": "cooked@addons.mozilla.org",
"strict_min_version": "115.0"
}
},
"background": {
"scripts": ["cooked.js"]
},
"action": {
"default_icon": {
"16": "icons/c-16.png",
"32": "icons/c-32.png"
},
"default_title": "__MSG_extensionTooltip__"
},
"icons": {
"48": "icons/c-48.png",
"96": "icons/c-96.png"
},
"permissions": [
"activeTab"
]
}