Add Opera cache cleaner extension baseline

This commit is contained in:
ToxicCrzay270
2026-05-15 00:41:37 +02:00
commit fe17014aff
23 changed files with 1541 additions and 0 deletions

View File

@@ -0,0 +1,28 @@
{
"manifest_version": 3,
"name": "Opera Cache Cleaner",
"version": "1.0.0",
"description": "Clears only the browser cache for a selected time range and can run on a configurable timer.",
"permissions": [
"browsingData",
"storage",
"alarms"
],
"background": {
"service_worker": "background.js"
},
"action": {
"default_title": "Opera Cache Cleaner",
"default_popup": "popup/popup.html",
"default_icon": {
"16": "icons/icon16.png",
"48": "icons/icon48.png",
"128": "icons/icon128.png"
}
},
"icons": {
"16": "icons/icon16.png",
"48": "icons/icon48.png",
"128": "icons/icon128.png"
}
}