Delete The Browsing History Of The Current Page

Delete The Browsing History Of The Current Page

This super-duper ultra micro mini one-liner add-on simply erases only the browsing history of the current page when the page action button is clicked or the shortcut key is typed.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "__MSG_extension_name__",
  "description": "__MSG_extension_description__",
  "version": "2.2023.410.0",
  "author": "dlw@mcprv",
  "default_locale": "en",
  "browser_specific_settings": {
    "gecko": {
      "id": "{06c0f7bd-6a85-4d0c-943f-ed3eddff1588}"
    }
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "browser_action": {
    "default_title": "__MSG_browser_action_title__",
    "default_icon": {
      "64": "history.png"
    }
  },
  "permissions": [
    "activeTab",
    "history",
    "menus"
  ],
  "icons": {
    "64": "history.png"
  },
  "commands": {
    "delete_page_history": {
      "suggested_key": {},
      "description": "__MSG_delete_page_history__"
    },
    "add_page_history": {
      "suggested_key": {},
      "description": "__MSG_add_page_history__"
    }
  }
}