1
0
Fork 0
mirror of https://github.com/Oreolek/TrackMeNot-Chrome.git synced 2024-06-17 07:21:08 +03:00
trackmenot/manifest.json

25 lines
526 B
JSON
Raw Normal View History

{
"manifest_version": 2,
"name": "TrackMeNot",
"version": "0.8.3",
"description": "TMN portage on Chrome",
"browser_action": {
"default_icon": "tmn.png",
"popup": "menu.html"
},
"background": "tmn_page.html",
"options_page": "options.html",
"content_scripts": [
{
"matches": ["http://*/*"],
"js": ["tmn_search.js", "rep_processor.js"],
"run_at": "document_start",
"all_frames" : true
}
],
"permissions": [
"tabs","http://*/*"
]
}