Best way to clean cache and chrome browsing data! Easily clean history, downloads, cookie or set auto history cleaning!
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": "__MSG_name__",
"description": "__MSG_description__",
"default_locale": "en",
"icons": {
"16": "img/icon_16.png",
"48": "img/icon_48.png",
"128": "img/icon_128.png"
},
"action": {
"default_icon": {
"38": "img/icon_38.png"
},
"default_title": "__MSG_name__",
"default_popup": "popup.html"
},
"background": {
"service_worker": "js/background.js"
},
"commands": {
"clear": {
"suggested_key": {
"default": "Alt+C",
"mac": "Alt+C"
},
"description": "Clear"
}
},
"content_scripts": [
{
"js": [
"js/content.js"
],
"css": [
"css/content.css"
],
"matches": [
"*://*/*"
],
"run_at": "document_idle"
}
],
"options_page": "options.html",
"manifest_version": 3,
"permissions": [
"storage",
"browsingData",
"tabs",
"cookies",
"alarms"
],
"host_permissions": [
"*://*/*"
],
"web_accessible_resources": [
{
"resources": [
"*"
],
"matches": [
"*://*/*"
]
}
],
"version": "1.1.32"
}