Automatically clear your browser cache before loading a page. Can be enabled/disabled with a single mouse click
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",
"name": "Cache Killer",
"version": "100",
"manifest_version": 3,
"description": "Automatically clear your browser cache before loading a page. Can be enabled/disabled with a single mouse click",
"icons": {
"16": "icon16.png",
"48": "icon48.png",
"128": "icon128.png"
},
"action": {
"default_title": "Cache Killer disabled",
"icons": {
"16": "icon16.png",
"48": "icon48.png",
"128": "icon128.png"
}
},
"background": {
"service_worker": "background.js"
},
"options_page": "options.html",
"incognito": "split",
"permissions": [
"activeTab",
"storage",
"browsingData",
"webRequest"
],
"host_permissions": [
"*://*/*"
]
}