Clipboard Concat

Concatenates selected text or link to clipboard entity
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "description": "Concatenates selected text or link to clipboard entity",
  "manifest_version": 2,
  "name": "Clipboard Concat",
  "version": "1.0",
  "homepage_url": "https://www.google.com",
  "icons": {
    "48": "icons/48.png",
    "96": "icons/96.png"
  },
  "permissions": [
    "menus",
    "activeTab",
    "contextMenus",
    "clipboardWrite",
    "clipboardRead"
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "{53323020-6120-4445-b42c-ca07767be031}"
    }
  }
}