Copy Link/Tab Name and URL

Copy Link/Tab Name and URL

Copy the name and URL of a link or a Tab.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "__MSG_extensionName__",
  "description": "__MSG_extensionDescription__",
  "version": "3.1",
  "default_locale": "en",
  "homepage_url": "https://github.com/wadefelix/copylinktabnameandurl",
  "author": "Ren Wei",
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content-script.js"
      ],
      "run_at": "document_start"
    }
  ],
  "permissions": [
    "activeTab",
    "clipboardWrite",
    "contextMenus",
    "storage",
    "tabs"
  ],
  "icons": {
    "16": "icons/page-16.png",
    "32": "icons/page-32.png",
    "48": "icons/page-48.png"
  },
  "options_ui": {
    "page": "options.html"
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}