-
Notifications
You must be signed in to change notification settings - Fork 54
/
manifest.json
42 lines (42 loc) · 905 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
42
{
"author": "TrackMeNot",
"background": {
"page": "background.html"
},
"browser_action": {
"default_icon": "tmn.png",
"default_popup": "tmn_menu.html"
},
"content_scripts": [
{
"matches": [
"http://*/*",
"https://*/*"
],
"js": [
"tmn_search.js"
],
"run_at": "document_start",
"all_frames": false
}
],
"description": "Protect against data profiling by search engines",
"icons": {
"16": "icon16.png",
"48": "icon32.png"
},
"manifest_version": 2,
"name": "TrackMeNot",
"options_ui": {
"page": "options.html"
},
"permissions": [
"tabs",
"cookies",
"https://*/*",
"http://*/*",
"webNavigation",
"storage"
],
"version": "0.10.46"
}