clear cache with one 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",
"manifest_version": 3,
"name": "One Click Clear Cache",
"description": "clear cache with one click",
"version": "1.1",
"icons": {
"48": "icons/48.png",
"128": "icons/128.png"
},
"action": {
"default_icon": {
"48": "icons/48.png",
"128": "icons/128.png"
},
"default_popup": "options.html",
"default_title": "Clear Cache"
},
"background": {
"service_worker": "background.js"
},
"permissions": [
"browsingData",
"storage"
]
}