YouTube Swap Comments

YouTube Swap Comments

Do you dislike the new YouTube layout? This add-on will swap the comments and videos back to where they were before 2024.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "YouTube Swap Comments",
  "version": "1.2.6",
  "description": "Do you dislike the new YouTube layout? This add-on will swap the comments and videos back to where they were before 2024.",
  "icons": {
    "128": "image.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.youtube.com/*"
      ],
      "js": [
        "main.js"
      ],
      "css": [
        "style.css"
      ],
      "run_at": "document_start"
    }
  ],
  "permissions": []
}