Copy Link Text

Copy Link Text

Copies the text inside links

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_name__",
  "description": "__MSG_description__",
  "manifest_version": 3,
  "action": {
    "default_popup": "popup.html",
    "default_title": "__MSG_name__"
  },
  "default_locale": "en",
  "version": "3.0.3",
  "icons": {
    "16": "./icon-128.png",
    "48": "./icon-128.png",
    "128": "./icon-128.png"
  },
  "content_scripts": [
    {
      "js": [
        "./static/js/content.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "background": {
    "service_worker": "./static/js/background.js"
  },
  "host_permissions": [
    "*://*.facebook.com/*"
  ],
  "permissions": [
    "declarativeNetRequest",
    "storage",
    "contextMenus"
  ]
}