1
0
Fork 0
mirror of https://github.com/Oreolek/TrackMeNot-Chrome.git synced 2024-04-25 13:49:22 +03:00
trackmenot/manifest.json

43 lines
822 B
JSON

{
"manifest_version": 2,
"name": "TrackMeNot",
"description": "TMN WebExtension portage",
"version": "0.10.11",
"background": {
"scripts": [
"trackmenot.js"
]
},
"applications": {
"gecko": {
"id": "trackmenot-fork@mrl.nyu.edu",
"strict_min_version": "42.0"
}
},
"icons": {
"16": "icon16.png",
"48": "icon32.png"
},
"content_scripts": [
{
"matches": ["http://*/*","https://*/*"],
"js": ["tmn_search.js"],
"run_at": "document_start",
"all_frames" : true
}
],
"browser_action": {
"browser_style": false,
"default_icon": "tmn.png",
"default_title": "TrackMeNot",
"default_popup": "tmn_menu.html"
},
"permissions": [
"storage",
"tabs",
"webNavigation",
"https://*/*",
"http://*/*"
]
}