YouTube Optimizer - Hide Recommended Videos

YouTube Optimizer - Hide Recommended Videos

Hide YouTube Comments, Live Chat, Like/Dislike Buttons, and Related Videos.

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 Optimizer - Hide Recommended Videos",
  "short_name": "YouTube Optimizer",
  "version": "1.0.1",
  "description": "Hide YouTube Comments, Live Chat, Like/Dislike Buttons, and Related Videos.",
  "permissions": [
    "storage"
  ],
  "icons": {
    "128": "icons/128.png",
    "256": "icons/256.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.youtube.com/watch*"
      ],
      "css": [
        "css/styles.css"
      ],
      "js": [
        "js/options.js"
      ]
    }
  ],
  "action": {
    "default_icon": {
      "16": "icons/16.png",
      "32": "icons/32.png",
      "48": "icons/48.png",
      "64": "icons/64.png"
    },
    "default_popup": "popup.html"
  },
  "content_security_policy": {}
}