forked from EFForg/privacybadger
-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
105 lines (105 loc) · 2.35 KB
/
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"version": "2017.9.12.1",
"author": { "email": "[email protected]" },
"applications": {
"gecko": {
"id": "jid1-MnnxcxisBPnSXQ@jetpack"
}
},
"incognito": "spanning",
"permissions": [
"tabs",
"http://*/*",
"https://*/*",
"contextMenus",
"webRequest",
"webRequestBlocking",
"webNavigation",
"storage",
"cookies",
"privacy"
],
"background": {
"scripts": [
"js/bootstrap.js",
"lib/punycode.js",
"lib/publicSuffixList.js",
"lib/basedomain.js",
"lib/underscore-min.js",
"data/surrogates.js",
"js/surrogates.js",
"js/multiDomainFirstParties.js",
"js/incognito.js",
"js/constants.js",
"js/storage.js",
"js/utils.js",
"js/htmlutils.js",
"js/webrequest.js",
"js/heuristicblocking.js",
"js/socialwidgetloader.js",
"js/migrations.js",
"js/firefoxandroid.js",
"js/background.js"
]
},
"content_scripts": [
{
"js": [
"js/firstparties/twitter.js"
],
"matches": [
"https://twitter.com/*",
"http://twitter.com/*"
],
"run_at": "document_idle"
},
{
"js": [
"js/contentscripts/clobbercookie.js",
"js/contentscripts/clobberlocalstorage.js",
"js/contentscripts/fingerprinting.js"
],
"matches": [
"<all_urls>"
],
"all_frames": true,
"run_at": "document_start"
},
{
"js": [
"js/contentscripts/socialwidgets.js",
"js/contentscripts/supercookie.js"
],
"matches": [
"<all_urls>"
],
"all_frames": true,
"run_at": "document_idle"
}
],
"default_locale": "en_US",
"description": "__MSG_description__",
"icons": {
"16": "icons/badger-16.png",
"19": "icons/badger-19.png",
"38": "icons/badger-38.png",
"48": "icons/badger-48.png",
"64": "icons/badger-64.png",
"128": "icons/badger-128.png"
},
"manifest_version": 2,
"minimum_chrome_version": "18.0",
"name": "__MSG_name__",
"browser_action": {
"default_icon": {
"19": "icons/badger-19.png",
"38": "icons/badger-38.png"
},
"default_popup": "skin/popup.html",
"default_title": "__MSG_name__"
},
"options_page": "/skin/options.html",
"web_accessible_resources": [
"skin/socialwidgets/*"
]
}