Copy link

Copy link

Copies a formatted link to the current tab onto the clipboard.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Copy link",
  "description": "Copies a formatted link to the current tab onto the clipboard.",
  "author": "Tim Dierks <[email protected]>",
  "version": "1.0",
  "homepage_url": "https://github.com/tdierks/copy-url-ext",
  "icons": {
    "128": "icon128.png"
  },
  "browser_action": {
    "default_icon": {
      "19": "icon19.png",
      "38": "icon38.png"
    },
    "default_title": "Copy formatted link"
  },
  "background": {
    "page": "copy-url.html",
    "persistent": false
  },
  "commands": {
    "_execute_browser_action": {
      "suggested_key": {
        "default": "Ctrl+Shift+C"
      }
    }
  },
  "options_ui": {
    "page": "options.html",
    "chrome_style": true
  },
  "permissions": [
    "activeTab",
    "storage"
  ]
}