YouTube URLを最低限だけコピるやつ

YouTube動画のURLを最低限だけコピるやつです
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "name": "YouTube URLを最低限だけコピるやつ",
  "description": "YouTube動画のURLを最低限だけコピるやつです",
  "version": "1.3.0",
  "manifest_version": 2,
  "icons": {
    "128": "icon.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.youtube.com/*"
      ],
      "js": [
        "content.js"
      ],
      "css": [
        "content.css"
      ]
    }
  ],
  "options_ui": {
    "page": "options.html"
  },
  "permissions": [
    "storage"
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "{1d1128d3-70db-4d8c-917b-4eb07a399910}"
    }
  }
}