YouTube Auto Pause Blocker

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

Cos'è YouTube Auto Pause Blocker?

YouTube Auto Pause Blocker è un'estensione di Chrome sviluppata da https://browsecraft.com, e la sua funzione principale è "Disables the "Video Paused. Continue Watching?" popup on YouTube.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione YouTube Auto Pause Blocker

Scarica i file di estensione YouTube Auto Pause Blocker in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome YouTube Auto Pause Blocker YouTube Auto Pause Blocker
ID kdmekoohmngfmmmmlflddplohklmmmoc
URL Ufficiale https://chromewebstore.google.com/detail/youtube-auto-pause-blocke/kdmekoohmngfmmmmlflddplohklmmmoc
Descrizione Disables the "Video Paused. Continue Watching?" popup on YouTube.
Dimensione del File 27.42 KB
Conteggio Installazioni 31,903
Versione Corrente 23.12.11
Ultimo Aggiornamento 2023-12-12
Data di Pubblicazione 2019-09-28
Valutazione 3.18/5 Totale 107 Valutazioni
Sviluppatore https://browsecraft.com
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://browsecraft.com/
URL della Pagina di Aiuto https://browsecraft.com/contacts
URL della Pagina della Politica sulla Privacy https://browsecraft.com/privacy
Lingue Supportate 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"
    }
}