YouTube Comments Scroll

YouTube Comments Scroll

Scroll the comments in the new YouTube UI, to allow user watch video and read comments simultaneously

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "YouTube Comments Scroll",
  "version": "1.0",
  "description": "Scroll the comments in the new YouTube UI, to allow user watch video and read comments at the same time",
  "content_scripts": [
    {
      "matches": [
        "*://*.youtube.com/*"
      ],
      "js": [
        "js/jquery-3.6.0.min.js",
        "content.js"
      ],
      "all_frames": true,
      "run_at": "document_end"
    }
  ],
  "browser_action": {
    "default_icon": "icons/logo.png"
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "{5140ab19-4077-4c07-a5f3-1d445a533af0}"
    }
  }
}