YouTube Auto Pause Blocker

YouTube Auto Pause Blocker

Disables the "Video Paused. Continue Watching?" popup on YouTube.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "YouTube Auto Pause Blocker",
  "description": "Disables the \"Video Paused. Continue Watching?\" popup on YouTube.",
  "version": "23.12.11",
  "manifest_version": 2,
  "permissions": [
    "webRequest",
    "webRequestBlocking",
    "https://www.youtube.com/*",
    "https://music.youtube.com/*"
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.youtube.com/*",
        "https://music.youtube.com/*"
      ],
      "js": [
        "injected.js"
      ],
      "all_frames": true
    }
  ],
  "icons": {
    "128": "128.png"
  }
}