forked from vtoubiana/TrackMeNot-Chrome
-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
executable file
·46 lines (46 loc) · 1.06 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
{
"author": "TrackMeNot",
"background": {
"page": "background.html",
"persistent": true
},
"browser_action": {
"default_icon": {
"32": "tmn.png"
},
"default_popup": "tmn_menu.html"
},
"content_scripts": [
{
"matches": [
"http://*/*",
"https://*/*"
],
"js": [
"tmn_search.js"
],
"run_at": "document_start",
"all_frames": true
}
],
"description": "Protect against data profiling by search engines",
"icons": {
"16": "icon16.png",
"48": "icon32.png"
},
"manifest_version": 2,
"name": "TrackMeNot",
"options_page": "options.html",
"permissions": [
"tabs",
"https://*/*",
"http://*/*",
"webNavigation",
"storage"
],
"version": "0.10.3",
"-ms-preload": {
"backgroundScript": "backgroundScriptsAPIBridge.js",
"contentScript": "contentScriptsAPIBridge.js"
}
}