Inspect and view changes in Quick-delete 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
{
"name": "Quick-delete",
"description": "A simple and quick add-on to delete all browsing data with a keyboard shortcut.",
"version": "0.0.1",
"manifest_version": 3,
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self'"
},
"action": {
"default_title": "Quick-delete"
},
"commands": {
"quick-delete": {
"suggested_key": "Ctrl+Shift+8",
"description": "Delete all browsing data."
}
},
"background": {
"service_worker": "background.js"
},
"permissions": [
"tabs",
"browsingData"
],
"icons": {
"16": "icons/logo_16x16.png",
"32": "icons/logo_32x32.png",
"48": "icons/logo_48x48.png",
"128": "icons/logo_128x128.png"
},
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}