Inspect and view changes in Privacy Guardian source codes across current and past versions
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"description": "Allows the user to remove history, passwords, downloads, serviceWorkers",
"manifest_version": 2,
"name": "Delete Everything",
"version": "1.0",
"homepage_url": "https://github.com/nabendu82/Addons",
"icons": {
"32": "icons/logo_32.png",
"64": "icons/logo_64.png",
"128": "icons/logo_128.png"
},
"background": {
"scripts": [
"background.js"
]
},
"browser_action": {
"default_icon": "icons/logo_64.png",
"default_title": "Delete it!"
},
"options_ui": {
"page": "options/options.html",
"browser_style": false
},
"permissions": [
"browsingData",
"notifications",
"storage"
],
"browser_specific_settings": {
"gecko": {
"id": "{99913c7d-10ae-4394-a012-0406f7e745e4}"
}
}
}