Create Link

Create Link

Right click the page to copy the page title and address to create a link for pasting into a rich text editor.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "Create Link",
  "author": "Mike Francis",
  "version": "1.4",
  "description": "Right click the page to copy the page title and address to create a link for pasting into a rich text editor.",
  "permissions": [
    "*://*/*",
    "activeTab",
    "contextMenus",
    "clipboardWrite"
  ],
  "icons": {
    "16": "images/create-link16.png"
  },
  "background": {
    "scripts": [
      "js/background.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "js/main.js"
      ],
      "run_at": "document_end"
    }
  ],
  "browser_action": {
    "default_icon": {
      "20": "images/create-link20.png",
      "40": "images/create-link40.png"
    },
    "default_popup": "popup.html"
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}