Copy Title as Hyper-Link for YouTube™

Copy Title as Hyper-Link for YouTube™

Copy (CTRL+C, CMD+C, Edit->Copy) with nothing selected and the title of the current YouTube video will be copied as a hyperlink

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Copy Title as Hyper-Link for YouTube™",
  "description": "Copy (CTRL+C, CMD+C, Edit->Copy) with nothing selected and the title of the current YouTube video will be copied as a hyperlink",
  "version": "1.1",
  "content_scripts": [
    {
      "matches": [
        "http://*.youtube.com/watch*",
        "https://*.youtube.com/watch*"
      ],
      "js": [
        "myscript.js",
        "jquery.min.js"
      ],
      "run_at": "document_idle"
    }
  ],
  "manifest_version": 2,
  "permissions": [
    "http://*.youtube.com/*",
    "https://*.youtube.com/*",
    "clipboardWrite",
    "clipboardRead"
  ],
  "background": {
    "page": "background.html"
  },
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  }
}