-
Notifications
You must be signed in to change notification settings - Fork 50
/
manifest.json
41 lines (34 loc) · 942 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
40
41
{
"manifest_version": 2,
"name": "Google Container",
"version": "1.5.4",
"description": "Google Container isolates your Google activity from the rest of your web activity in order to prevent Google from tracking you outside of the Google website via third party cookies.",
"icons": {
"48": "icon.png",
"96": "[email protected]"
},
"applications": {
"gecko": {
"id": "@contain-google",
"strict_min_version": "57.0"
}
},
"homepage_url": "https://github.com/containers-everywhere/contain-google",
"permissions": [
"<all_urls>",
"contextualIdentities",
"cookies",
"management",
"tabs",
"webRequestBlocking",
"webRequest",
"storage"
],
"background": {
"scripts": ["background.js"]
},
"options_ui": {
"page": "options.html",
"browser_style": true
}
}