Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"name": "Clear Cache and Cookies",
"author": "rohits",
"version": "1.0",
"manifest_version": 3,
"permissions": [
"activeTab",
"cookies",
"storage",
"tabs",
"browsingData",
"scripting"
],
"background": {
"service_worker": "background.js"
},
"action": {
"default_popup": "popup.html",
"default_icon": {
"16": "icons/icon-16.png",
"32": "icons/icon-32.png",
"48": "icons/icon-48.png",
"64": "icons/icon-64.png",
"128": "icons/icon-128.png"
}
},
"icons": {
"16": "icons/icon-16.png",
"32": "icons/icon-32.png",
"48": "icons/icon-48.png",
"64": "icons/icon-64.png",
"128": "icons/icon-128.png"
},
"host_permissions": [
"https://*/*",
"http://*/*"
],
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}