Where does my data go?
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"update_url": "https://clients2.google.com/service/update2/crx",
"manifest_version": 2,
"name": "Privacy Watch",
"short_name": "Privacy Watch",
"description": "Where does my data go?",
"version": "0.3.7",
"icons": {
"16": "images/icon16.png",
"48": "images/icon48.png",
"128": "images/icon128.png"
},
"permissions": [
"storage",
"tabs",
"webNavigation",
"webRequest",
"http://*/*",
"https://*/*"
],
"options_page": "options.html",
"background": {
"scripts": [
"scripts/background.min.js"
]
},
"browser_action": {
"default_icon": {
"19": "images/web-watch-green-19.png",
"38": "images/web-watch-green-38.png"
},
"default_popup": "index.html",
"default_title": "Privacy Watch"
},
"content_scripts": [
{
"matches": [
"http://*/*",
"https://*/*"
],
"js": [
"scripts/content.min.js"
],
"run_at": "document_end",
"all_frames": true
}
]
}