YouFocus - Hide YouTube Distractions

YouFocus - Hide YouTube Distractions

Hide YouTube suggested videos, comments, and more with a single click

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "YouFocus - Hide YouTube Distractions",
  "version": "0.11",
  "description": "Hide YouTube suggested videos, comments, and more with a single click",
  "permissions": [
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://www.youtube.com/*"
      ],
      "run_at": "document_start",
      "css": [
        "hide.css"
      ],
      "js": [
        "main.js"
      ]
    }
  ],
  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "images/YouFocus16x16.png",
      "32": "images/YouFocus32x32.png",
      "48": "images/YouFocus48x48.png",
      "128": "images/YouFocus128x128.png"
    }
  },
  "icons": {
    "16": "images/YouFocus16x16.png",
    "32": "images/YouFocus32x32.png",
    "48": "images/YouFocus48x48.png",
    "128": "images/YouFocus128x128.png"
  },
  "manifest_version": 3
}