Delete Browsing History Of Domain Of Current Page

Delete Browsing History Of Domain Of Current Page

Delete the browsing history and Cookies of the domain of the current page.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "__MSG_extension_name__",
  "description": "__MSG_extension_description__",
  "version": "1.2023.410.0",
  "author": "dlw@mcprv",
  "default_locale": "en",
  "browser_specific_settings": {
    "gecko": {
      "id": "{33d2083a-862e-40f8-a61f-0929ad1ab0a7}"
    }
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "browser_action": {
    "default_title": "__MSG_browser_action_title__",
    "browser_style": true,
    "default_popup": "browser_action.html",
    "default_icon": {
      "64": "history.png"
    }
  },
  "permissions": [
    "activeTab",
    "history",
    "notifications",
    "cookies",
    "downloads",
    "browsingData",
    "menus",
    "<all_urls>",
    "management"
  ],
  "icons": {
    "64": "history.png"
  },
  "commands": {
    "delete_subdomain_history": {
      "suggested_key": {},
      "description": "__MSG_delete_subdomain_history__"
    },
    "delete_domain_history": {
      "suggested_key": {},
      "description": "__MSG_delete_domain_history__"
    },
    "delete_subdomain_cookies": {
      "suggested_key": {},
      "description": "__MSG_delete_subdomain_cookies__"
    },
    "delete_domain_cookies": {
      "suggested_key": {},
      "description": "__MSG_delete_domain_cookies__"
    }
  }
}