-
Notifications
You must be signed in to change notification settings - Fork 4
/
manifest.json
39 lines (39 loc) · 857 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
{
"description": "__MSG_extensionDescription__",
"manifest_version": 2,
"name": "__MSG_extensionName__",
"version": "1.4.0",
"homepage_url": "https://github.com/mozfreddyb/webext-firstpartyisolation",
"default_locale": "en",
"icons": {
"48": "icons/fishbowl.svg",
"96": "icons/fishbowl.svg"
},
"permissions": [
"privacy"
],
"background": {
"scripts": [
"background.js"
]
},
"browser_action": {
"default_icon": {
"16": "icons/fishbowl-light.svg",
"32": "icons/fishbowl-light.svg"
},
"theme_icons": [
{
"light": "icons/fishbowl-light.svg",
"dark": "icons/fishbowl-light.svg",
"size": 32
}
],
"default_title": "Click to disable First Party Isolation"
},
"applications": {
"gecko": {
"strict_min_version": "58.0a1"
}
}
}