Youtube popup blocker

People often put an endscreen in a youtube video, but sometimes this ruins the entire end because of annoying popups on the screen…

Cos'è Youtube popup blocker?

Youtube popup blocker è un'estensione di Chrome sviluppata da Dev Fasil, e la sua funzione principale è "People often put an endscreen in a youtube video, but sometimes this ruins the entire end because of annoying popups on the screen…".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Youtube popup blocker

Scarica i file di estensione Youtube popup 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

                        People often put an endscreen in a youtube video, but sometimes this ruins the entire end because of annoying popups on the screen that can't be turned off. This extention removes those unwanted popups.

It can be easily turned off again by clicking on the extention button in the top right.                    

Informazioni di Base sull'Estensione

Nome Youtube popup blocker Youtube popup blocker
ID calcepdepicecadfaibokdeheekbihkc
URL Ufficiale https://chromewebstore.google.com/detail/youtube-popup-blocker/calcepdepicecadfaibokdeheekbihkc
Descrizione People often put an endscreen in a youtube video, but sometimes this ruins the entire end because of annoying popups on the screen…
Dimensione del File 6.86 KB
Conteggio Installazioni 1,403
Versione Corrente 2.0
Ultimo Aggiornamento 2020-09-09
Data di Pubblicazione 2020-08-31
Valutazione 4.43/5 Totale 7 Valutazioni
Sviluppatore Dev Fasil
Email [email protected]
Tipo di Pagamento free
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Youtube popup blocker",
    "manifest_version": 2,
    "version": "2.0",
    "permissions": [
        "https:\/\/www.youtube.com\/*",
        "tabs",
        "storage"
    ],
    "icons": {
        "16": "rb_active_16.png",
        "128": "fyt_128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": []
}