YouTube Popup Tamer

YouTube Popup Tamer

Watch YouTube without interruptions. 2 modes! - blocking and closing annoying popups, video ads and many more. It blocks all popups and video ads before they even show up - you won't even see any pause.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "YouTube Popup Tamer",
  "version": "2.1.7.9",
  "description": "Watch YouTube without interruptions. 2 modes - blocking (FF only) and closing annoying popups, video ads and more.",
  "icons": {
    "16": "icons/icon16.png",
    "32": "icons/icon32.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "permissions": [
    "storage",
    "webRequest",
    "webRequestBlocking",
    "tabs",
    "*://www.youtube.com/*"
  ],
  "options_ui": {
    "page": "options.html"
  },
  "web_accessible_resources": [
    "img/*.png",
    "icons/*.png"
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "*://www.youtube.com/*"
      ],
      "js": [
        "doc_start.js"
      ],
      "run_at": "document_start"
    },
    {
      "matches": [
        "*://www.youtube.com/*"
      ],
      "js": [
        "yt_popup_tamer.js"
      ],
      "css": [
        "yt_popup_tamer.css"
      ],
      "run_at": "document_end"
    },
    {
      "matches": [
        "https://consent.youtube.com/*"
      ],
      "js": [
        "yt_cookie.js"
      ],
      "run_at": "document_end",
      "all_frames": true
    }
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "{eb13f886-9ad3-4aad-93cd-7d94b81bd140}"
    }
  }
}