forked from EFForg/privacybadger
-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
108 lines (108 loc) · 2.36 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
106
107
108
{
"version": "2015.8.14",
"author": {
"email": "[email protected]"
},
"permissions": [
"tabs",
"http://*/*",
"https://*/*",
"contextMenus",
"webRequest",
"webRequestBlocking",
"webNavigation",
"unlimitedStorage",
"storage",
"cookies",
"privacy"
],
"background": {
"scripts": [
"lib/compat.js",
"lib/io.js",
"src/utils.js",
"lib/adblockplus.js",
"lib/punycode.js",
"lib/publicSuffixList.js",
"lib/basedomain.js",
"lib/sha1.js",
"lib/jsbn.js",
"lib/rsa.js",
"lib/popupBlocker.js",
"src/cookieblocklist.js",
"src/blockedDomainList.js",
"src/domainExceptions.js",
"src/webrequest.js",
"src/heuristicblocking.js",
"src/socialwidgetloader.js",
"src/background.js"
]
},
"content_scripts": [
{
"js": [
"src/include.preload.js",
"src/clobbercookie.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"
},
{
"js": [
"src/domainExceptionDialog.js"
],
"css": [
"skin/badger.css"
],
"matches": [
"<all_urls>"
],
"all_frames": false,
"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/*"
]
}