Inspect and view changes in Clear Cache Shortcut source codes across current and past versions
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": "http://clients2.google.com/service/update2/crx",
"manifest_version": 2,
"name": "Clear Cache Shortcut",
"version": "1.32",
"icons": {
"16": "assets/icon16.png",
"48": "assets/icon48.png",
"128": "assets/icon128.png"
},
"description": "Quickly clear all your browser cache with a single click.",
"content_security_policy": "script-src 'self' https://ssl.google-analytics.com; object-src 'self'",
"browser_action": {
"default_icon": "assets/icon_done.png",
"default_title": "Clear All Cache",
"default_popup": "info.html"
},
"omnibox": {
"keyword": "cache"
},
"background": {
"scripts": [
"assets/jquery-1.9.0.min.js",
"assets/functions.js",
"assets/background.js"
]
},
"permissions": [
"browsingData"
]
}