Cookie Autodelete Regex

Cookie Autodelete Regex

Control your cookies! Automatically delete unwanted cookies from your closed tabs while keeping the ones you want. Fork from the original that adds automatic regex patterns as an option when whitelisting pages.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "background": {
    "scripts": [
      "global_files/browserDetect.js",
      "global_files/browser-polyfill.min.js",
      "global_files/redux-webext.js",
      "bundles/common-background-popup-setting.bundle.js",
      "bundles/common-background.bundle.js",
      "bundles/background.bundle.js"
    ]
  },
  "description": "__MSG_extensionDescription__",
  "homepage_url": "https://github.com/2art/Cookie-AutoDelete-Regex",
  "author": "CAD Team & 2art",
  "default_locale": "en",
  "browser_action": {
    "browser_style": false,
    "default_icon": {
      "48": "icons/icon_48.png"
    },
    "default_title": "Cookie AutoDelete Regex",
    "default_popup": "popup/popup.html"
  },
  "icons": {
    "48": "icons/icon_48.png",
    "128": "icons/icon_128.png"
  },
  "applications": {
    "gecko": {
      "id": "[email protected]",
      "strict_min_version": "63.0"
    }
  },
  "minimum_chrome_version": "74",
  "options_ui": {
    "page": "settings/settings.html",
    "open_in_tab": true
  },
  "permissions": [
    "activeTab",
    "alarms",
    "browsingData",
    "contextMenus",
    "contextualIdentities",
    "cookies",
    "notifications",
    "storage",
    "tabs",
    "<all_urls>"
  ],
  "manifest_version": 2,
  "name": "__MSG_extensionName__",
  "version": "3.999.999"
}