Youtube QR Share

Youtube QR Share is an extension that allows you to share youtube videos with a QR code so you can later on scan on your phone
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Youtube QR Share",
  "description": "Youtube QR Share is an extension that allows you to share youtube videos with a QR code so you can later on scan on your phone",
  "version": "2.0.2",
  "manifest_version": 3,
  "content_scripts": [
    {
      "matches": [
        "*://*.youtube.com/watch?v=*"
      ],
      "js": [
        "content.js",
        "qrcode.min.js"
      ]
    }
  ],
  "icons": {
    "16": "/images/logo16.png",
    "32": "/images/logo32.png",
    "48": "/images/logo48.png",
    "128": "/images/logo128.png"
  },
  "action": {
    "default_popup": "/popup/popup.html",
    "default_title": "QR Share",
    "default_icon": "/images/logo.png"
  },
  "author": "Sizzeh"
}