The Cleaner -  delete Cookies and Cache

The Cleaner - delete Cookies and Cache

The Cleaner delete the Cache, Cookies, Downloads, History from Chrome Browser. Set auto history cleaning, to protect your privacy!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_name__",
  "description": "__MSG_description__",
  "default_locale": "en",
  "manifest_version": 3,
  "version": "1.0.6",
  "options_page": "options.html",
  "content_scripts": [
    {
      "js": [
        "scripts/content.js"
      ],
      "css": [
        "styles/content.css"
      ],
      "matches": [
        "*://*/*"
      ],
      "run_at": "document_idle"
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "*"
      ],
      "matches": [
        "*://*/*"
      ]
    }
  ],
  "icons": {
    "16": "img/icon_16.png",
    "48": "img/icon_48.png",
    "128": "img/icon_128.png"
  },
  "background": {
    "service_worker": "scripts/bg.js"
  },
  "commands": {
    "clear": {
      "suggested_key": {
        "default": "Alt+C",
        "mac": "Alt+C"
      },
      "description": "Clear"
    }
  },
  "permissions": [
    "storage",
    "browsingData",
    "tabs",
    "cookies",
    "webRequest",
    "alarms"
  ],
  "host_permissions": [
    "*://*/*"
  ],
  "action": {
    "default_icon": {
      "38": "img/icon_38.png"
    },
    "default_title": "__MSG_name__",
    "default_popup": "popup.html"
  }
}