Easily clear browser's cache via toolbar popup.
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"version": "0.1.5",
"manifest_version": 3,
"name": "Cache Cleaner",
"homepage_url": "https://mybrowseraddon.com/cache-cleaner.html",
"description": "Easily clear browser's cache via toolbar popup.",
"commands": {
"_execute_action": {}
},
"permissions": [
"storage",
"browsingData",
"notifications"
],
"browser_specific_settings": {
"gecko": {
"strict_min_version": "109.0",
"id": "{f9148285-1f7b-4c3b-9ae3-42f679bd8825}"
}
},
"background": {
"scripts": [
"lib/config.js",
"lib/chrome.js",
"lib/runtime.js",
"lib/common.js"
]
},
"action": {
"default_title": "Cache Cleaner",
"default_popup": "data/popup/popup.html",
"default_icon": {
"16": "data/icons/16.png",
"32": "data/icons/32.png",
"48": "data/icons/48.png",
"64": "data/icons/64.png"
}
},
"icons": {
"16": "data/icons/16.png",
"32": "data/icons/32.png",
"48": "data/icons/48.png",
"64": "data/icons/64.png",
"128": "data/icons/128.png"
}
}