History Cleaner

History Cleaner

Deletes history older than a specified amount of days.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "__MSG_extensionName__",
  "version": "1.6.0",
  "description": "__MSG_extensionDescription__",
  "icons": {
    "96": "icons/icon-96.png"
  },
  "background": {
    "service_worker": "background.bundle.js",
    "type": "module"
  },
  "permissions": [
    "history",
    "storage",
    "notifications",
    "alarms"
  ],
  "options_ui": {
    "page": "popup.html"
  },
  "action": {
    "default_icon": "icons/icon-96.png",
    "default_popup": "popup.html",
    "theme_icons": [
      {
        "light": "icons/icon-dark.png",
        "dark": "icons/icon-96.png",
        "size": 96
      }
    ]
  },
  "default_locale": "en_US"
}