forked from EFForg/privacybadger
-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
103 lines (103 loc) · 2.26 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
{
"version": "2016.12.8.1",
"author": {
"email": "eff.software.projects@gmail.com"
},
"applications": {
"gecko": {
"id": "jid1-MnnxcxisBPnSXQ@jetpack"
}
},
"incognito": "spanning",
"permissions": [
"tabs",
"http://*/*",
"https://*/*",
"contextMenus",
"webRequest",
"webRequestBlocking",
"webNavigation",
"storage",
"cookies",
"privacy"
],
"background": {
"scripts": [
"src/bootstrap.js",
"lib/punycode.js",
"lib/publicSuffixList.js",
"lib/basedomain.js",
"lib/sha1.js",
"lib/jsbn.js",
"lib/rsa.js",
"lib/underscore-min.js",
"data/surrogates.js",
"src/surrogates.js",
"src/multiDomainFirstParties.js",
"src/incognito.js",
"src/constants.js",
"src/storage.js",
"src/utils.js",
"src/htmlutils.js",
"src/webrequest.js",
"src/heuristicblocking.js",
"src/socialwidgetloader.js",
"src/migrations.js",
"src/background.js"
]
},
"content_scripts": [
{
"js": [
"src/clobbercookie.js",
"src/clobberlocalstorage.js",
"src/fingerprinting.js",
"src/supercookie.js"
],
"matches": [
"<all_urls>"
],
"all_frames": true,
"run_at": "document_start"
},
{
"js": [
"src/socialwidgets.js"
],
"matches": [
"<all_urls>"
],
"all_frames": true,
"run_at": "document_idle"
}
],
"default_locale": "en_US",
"description": "__MSG_description__",
"icons": {
"128": "icons/badger-128.png",
"16": "icons/badger-16.png",
"170": "icons/badger-170.png",
"19": "icons/badger-19.png",
"24": "icons/badger-24.png",
"32": "icons/badger-32.png",
"38": "icons/badger-38.png",
"48": "icons/badger-48.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",
"update_url": "http://clients2.google.com/service/update2/crx",
"web_accessible_resources": [
"skin/*",
"icons/*"
]
}