Data is synced from the Chrome Web Store. View the official store page for the most current information.
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Cache Cleaner",
"short_name": "Cache Cleaner",
"description": "Easily clear selected cache items for the current site or whole browser with a single key press, right-click menu, or popup icon.",
"homepage_url": "https:\/\/github.com\/cssnr\/cache-cleaner",
"author": "Shane",
"version": "0.0.2",
"manifest_version": 3,
"permissions": [
"activeTab",
"browsingData",
"contextMenus",
"scripting",
"storage"
],
"background": {
"type": "module",
"service_worker": "js\/service-worker.js"
},
"options_ui": {
"page": "html\/options.html",
"open_in_tab": true
},
"commands": {
"_execute_action": {
"suggested_key": {
"default": "Alt+Shift+A"
},
"description": "Show Popup Action"
},
"openOptions": {
"suggested_key": {
"default": "Alt+Shift+O"
},
"description": "Open Options Page"
},
"clearSiteCache": {
"description": "Clear Site Cache",
"suggested_key": {
"default": "Ctrl+Shift+4"
}
},
"clearAllSiteCache": {
"description": "Clear All Site Cache",
"suggested_key": {
"default": "Ctrl+Shift+5"
}
},
"clearBrowserCache": {
"description": "Clear Browser Cache"
},
"clearAllBrowserCache": {
"description": "Clear All Browser Cache"
}
},
"action": {
"default_popup": "html\/popup.html",
"default_title": "Cache Cleaner",
"default_icon": {
"16": "images\/logo16.png",
"32": "images\/logo32.png",
"48": "images\/logo48.png",
"96": "images\/logo96.png",
"128": "images\/logo128.png"
}
},
"icons": {
"16": "images\/logo16.png",
"32": "images\/logo32.png",
"48": "images\/logo48.png",
"96": "images\/logo96.png",
"128": "images\/logo128.png"
},
"minimum_chrome_version": "88"
}