Link History Shortcuts

Link History Shortcuts

Adds context menu (right-click) options to links and pages for adding/removing them to/from the browser history.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Link History Shortcuts",
  "version": "1.0.0",
  "description": "Adds context menu (right-click) options to links and pages for adding/removing them to/from the browser history.",
  "homepage_url": "https://github.com/mgziminsky/link-history-shortcuts",
  "icons": {
    "128": "clock.png"
  },
  "options_ui": {
    "page": "options.html"
  },
  "background": {
    "scripts": [
      "browser-polyfill.min.js",
      "background.js"
    ]
  },
  "permissions": [
    "contextMenus",
    "history",
    "storage",
    "activeTab"
  ],
  "optional_permissions": [
    "<all_urls>"
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "[email protected]",
      "strict_min_version": "55.0"
    }
  }
}