Youtube Study Mode

Youtube Study Mode

No distractions on Youtube when studying. Click the icon of the extension to enter or exit study mode.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Youtube Study Mode",
  "version": "3.1.1",
  "manifest_version": 3,
  "description": "No distractions on Youtube when studying. Click the icon of the extension to enter or exit study mode.",
  "icons": {
    "16": "/icon.png",
    "32": "/icon.png",
    "48": "/icon.png",
    "128": "/icon.png"
  },
  "action": {
    "default_icon": {
      "16": "/icon.png",
      "32": "/icon.png",
      "48": "/icon.png",
      "128": "/icon.png"
    }
  },
  "background": {
    "service_worker": "/background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.youtube.com/*"
      ],
      "js": [
        "/yt.js"
      ],
      "css": [
        "/style.css"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "logo.png",
        "stars.png"
      ],
      "matches": [
        "https://*.youtube.com/*"
      ]
    }
  ]
}