YouTube Auto Pause Blocker

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

¿Qué es YouTube Auto Pause Blocker?

YouTube Auto Pause Blocker es una extensión de Chrome desarrollada por https://browsecraft.com, y su función principal es "Disables the "Video Paused. Continue Watching?" popup on YouTube.".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión YouTube Auto Pause Blocker

Descarga archivos de extensión YouTube Auto Pause Blocker en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        Uses improved methods to prevent the "Video paused. Continue watching?" popup on YouTube. 

This extension will completely block the confirmation box from appearing, even if the tab is not focused/visible. 

Functions on regular YouTube and YouTube music.

Works perfectly in any viewing mode, such as full-screen, miniplayer and theater mode.

If you have issues with the extension please email me or use the contact form on the website.

Made with ❤️ by Browsecraft gang. Stand with Ukraine 💙💛.

DISCLAIMER
Please note "YouTube Auto Pause Blocker" is not made by YouTube™ or affiliated with YouTube™. YouTube™  are trademarks of Google LLC.                    

Información Básica de la Extensión

Nombre YouTube Auto Pause Blocker YouTube Auto Pause Blocker
ID kdmekoohmngfmmmmlflddplohklmmmoc
URL Oficial https://chromewebstore.google.com/detail/youtube-auto-pause-blocke/kdmekoohmngfmmmmlflddplohklmmmoc
Descripción Disables the "Video Paused. Continue Watching?" popup on YouTube.
Tamaño del Archivo 27.42 KB
Cantidad de Instalaciones 31,903
Versión Actual 23.12.11
Última Actualización 2023-12-12
Fecha de Publicación 2019-09-28
Calificación 3.18/5 Total de 107 Calificaciones
Desarrollador https://browsecraft.com
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://browsecraft.com/
URL de la Página de Ayuda https://browsecraft.com/contacts
URL de la Página de Política de Privacidad https://browsecraft.com/privacy
Idiomas Soportados en
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"
    }
}