Helps users to automatically clear your browsing data after pre-defined time intervals.
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": "Auto Clear Browsing Data",
"version": "3.0.0.2",
"short_name": "ACBD",
"author": "KodeMuse Software Private Limited",
"description": "Helps users to automatically clear your browsing data after pre-defined time intervals.",
"permissions": [
"storage",
"unlimitedStorage",
"browsingData",
"alarms",
"tabs"
],
"icons": {
"16": "/image/icon/free/16.png",
"24": "/image/icon/free/24.png",
"32": "/image/icon/free/32.png",
"48": "/image/icon/free/48.png",
"64": "/image/icon/free/64.png",
"128": "/image/icon/free/128.png",
"256": "/image/icon/free/256.png",
"512": "/image/icon/free/512.png"
},
"action": {
"default_popup": "/ng/popup/comp/popup/popup.html",
"default_icon": {
"16": "/image/icon/free/16.png",
"24": "/image/icon/free/24.png",
"32": "/image/icon/free/32.png",
"48": "/image/icon/free/48.png",
"64": "/image/icon/free/64.png",
"128": "/image/icon/free/128.png",
"256": "/image/icon/free/256.png",
"512": "/image/icon/free/512.png"
},
"default_title": "Auto Clear Browsing Data"
},
"background": {
"service_worker": "/background/sw.dart.js"
},
"manifest_version": 3,
"homepage_url": "https://www.kodemuse.dev/auto-clear-browsing-data/"
}