YouTube Distraction Blocker

YouTube Distraction Blocker

Blocks YouTube comments and/or watch recommendations as chosen to minimize distractions while working or studying.

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 Distraction Blocker",
  "version": "1.0.0",
  "content_scripts": [
    {
      "matches": [
        "https://www.youtube.com/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "action": {
    "default_popup": "popup/popup.html",
    "default_title": "YouTube Distraction Blocker",
    "default_icon": {
      "16": "/logos/Icon16.png",
      "32": "/logos/Icon32.png",
      "48": "/logos/Icon48.png",
      "128": "/logos/Icon128.png"
    }
  },
  "permissions": [
    "tabs"
  ],
  "description": "Blocks YouTube comments and/or watch recommendations as chosen to minimize distractions while working or studying."
}