YTCompact

YTCompact

YTCompact - compact mode for YouTube. Customize YouTube grid view, remove distracting elements and prevent sucked into rabbit hole.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "name": "__MSG_name__",
  "description": "__MSG_description__",
  "default_locale": "en",
  "icons": {
    "16": "assets/icons/ycm-red-16.png",
    "48": "assets/icons/ycm-red-48.png",
    "128": "assets/icons/ycm-red-128.png"
  },
  "action": {
    "default_icon": {
      "16": "assets/icons/ycm-red-16.png",
      "48": "assets/icons/ycm-red-48.png",
      "128": "assets/icons/ycm-red-128.png"
    },
    "default_title": "__MSG_name__",
    "default_popup": "popup.html"
  },
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "all_frames": false,
      "js": [
        "content-scripts.js"
      ],
      "matches": [
        "*://www.youtube.com/*",
        "*://music.youtube.com/*"
      ],
      "run_at": "document_end"
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "web-accessible-resources/*"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "use_dynamic_url": true
    }
  ],
  "permissions": [
    "tabs",
    "storage",
    "activeTab"
  ],
  "version": "1.0.0",
  "version_name": "1.0.0",
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}