Copy Text with URL

Copy Text with URL

Copy current selected text and current URL

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Copy Text with URL",
  "version": "2.0",
  "description": "Copy current selected text and current URL",
  "permissions": [
    "activeTab",
    "notifications",
    "scripting"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_icon": {
      "16": "images/icon_16.png",
      "32": "images/icon_32.png",
      "48": "images/icon_48.png",
      "128": "images/icon_128.png"
    },
    "default_title": "Copy Text with URL"
  },
  "commands": {
    "copy-text-with-url-as-plain": {
      "suggested_key": {
        "default": "Ctrl+Shift+C",
        "mac": "MacCtrl+Shift+C"
      },
      "description": "Copy text with URL as plain text",
      "global": false
    },
    "copy-text-with-url-as-markdown": {
      "suggested_key": {
        "default": "Ctrl+Shift+M",
        "mac": "MacCtrl+Shift+M"
      },
      "description": "Copy text with URL as markdown style",
      "global": false
    }
  },
  "icons": {
    "16": "images/icon_128.png",
    "32": "images/icon_128.png",
    "48": "images/icon_128.png",
    "128": "images/icon_128.png"
  },
  "manifest_version": 3
}