Copy Link Button / Copy Frame or Page URL

Copy Link Button / Copy Frame or Page URL

Copy Link button for the main toolbar (or address bar). Use the right-click context menu to "Copy Framed Page URL". See the full description and screenshots for all the "how to."

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "Copy Frame or Page URL",
  "description": "Right-click a framed page and pop its URL on the clipboard. Works on regular pages, too, unless you turn that off in Options.",
  "version": "1.4",
  "applications": {
    "gecko": {
      "id": "[email protected]",
      "strict_min_version": "72.0"
    }
  },
  "developer": {
    "name": "Jefferson \"jscher2000\" Scher",
    "url": "https://github.com/jscher2000/"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "permissions": [
    "menus",
    "clipboardWrite",
    "storage",
    "activeTab"
  ],
  "icons": {
    "64": "icons/link-64px-green.svg"
  },
  "options_ui": {
    "page": "options.html",
    "browser_style": true
  },
  "browser_action": {
    "browser_style": true,
    "default_icon": {
      "64": "icons/link-64px-green.svg"
    },
    "default_title": "Copy Current Page URL (Shift+click for Markdown)"
  },
  "page_action": {
    "browser_style": true,
    "default_icon": {
      "64": "icons/link-64px-green.svg"
    },
    "default_title": "Copy Current Page URL (Shift+click for Markdown)"
  },
  "commands": {
    "copy-page-url": {
      "description": "Copy Current Page URL"
    },
    "copy-page-url-as-markdown": {
      "description": "Copy Markdown of Current Page [Title](URL)"
    },
    "copy-page-url-as-html": {
      "description": "Copy HTML Link of Current Page <a href=url>Title</a>"
    }
  }
}