1
0
Fork 0
mirror of https://github.com/Oreolek/TrackMeNot-Chrome.git synced 2024-06-16 23:20:42 +03:00
trackmenot/manifest.json

27 lines
584 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",
"default_popup": "tmn_menu.html"
},
"background": {
"scripts": ["trackmenot.js"]
},
"options_page": "options.html",
"content_scripts": [
{
"matches": ["http://*/*","https://*/*"],
"js": ["tmn_search.js"],
"run_at": "document_start",
"all_frames" : true
}
],
"permissions": [
"tabs","https://*/*","webNavigation","storage"
]
}