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