1
0
Fork 0
mirror of https://github.com/Oreolek/TrackMeNot-Chrome.git synced 2024-05-24 11:58:12 +03:00
trackmenot/manifest.json
Vincent Toubiana 52ac38c9f0 Added features from the Firefox version
Code of Chrome and Firefox versions are now similar, there are only few
lines that are specific to each version
2015-11-11 14:56:54 +01:00

27 lines
584 B
JSON
Executable file

{
"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"
]
}