CopyLinks: Copy links with ease

CopyLinks: Copy links with ease

CopyLinks is a one-click copy solution for quick copy pasting of urls

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "CopyLinks: Copy links with ease",
  "version": "1.0.0.0",
  "description": "CopyLinks is a one-click copy solution for quick copy pasting of urls",
  "browser_action": {},
  "icons": {
    "16": "images/logo-16.png",
    "32": "images/logo-32.png",
    "48": "images/logo-48.png",
    "128": "images/logo-128.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "permissions": [
    "tabs"
  ],
  "commands": {
    "copy-link": {
      "suggested_key": {
        "default": "Alt+L",
        "mac": "Alt+L"
      },
      "description": "Copy link to clipboard"
    }
  }
}