Copy URL With Hash

Copy URL With Hash

Copy a page's URL with a hash at the end that identifies the location on the page

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "version": "2.0.0",
  "applications": {
    "gecko": {
      "id": "[email protected]",
      "strict_min_version": "52.0"
    }
  },
  "name": "__MSG_extensionName__",
  "description": "__MSG_extensionDescription__",
  "default_locale": "en",
  "homepage_url": "https://jhartz.github.io/copy-url-with-hash/",
  "permissions": [
    "activeTab",
    "contextMenus",
    "clipboardWrite",
    "storage"
  ],
  "background": {
    "scripts": [
      "browser-polyfill.min.js",
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "browser-polyfill.min.js",
        "content-utils.js",
        "OPTIONS.js",
        "content.js"
      ]
    }
  ],
  "options_ui": {
    "page": "options-page.html",
    "browser_style": true
  }
}