YouTube - Idle Watching

YouTube - Idle Watching

Gets rid of the annoying "Video paused, Continue watching?" popup.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "YouTube - Continue Watching",
  "version": "1.0",
  "description": "Gets rid of the annoying \"Video paused. Continue watching?\" popup.",
  "icons": {
    "48": "icons/play-48.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.youtube.com/*",
        "https://music.youtube.com/*"
      ],
      "js": [
        "script.js"
      ]
    }
  ]
}