Move Youtube comments to sidebar

Move Youtube comments to sidebar

Make the YouTube comments section visible from the sidebar

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_Name__",
  "short_name": "mycs",
  "version": "1.0.1",
  "manifest_version": 3,
  "description": "__MSG_Description__",
  "content_scripts": [
    {
      "matches": [
        "https://www.youtube.com/*"
      ],
      "js": [
        "contentScript.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "embed.js"
      ],
      "matches": [
        "https://www.youtube.com/*"
      ]
    }
  ],
  "default_locale": "en",
  "icons": {
    "16": "assets/icon16.png",
    "48": "assets/icon48.png",
    "128": "assets/icon128.png"
  }
}