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…

Co to jest Youtube popup blocker?

Youtube popup blocker to rozszerzenie Chrome opracowane przez Dev Fasil, a jego główną funkcją jest „People often put an endscreen in a youtube video, but sometimes this ruins the entire end because of annoying popups on the screen…”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Youtube popup blocker

Pobierz pliki rozszerzeń Youtube popup blocker w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Youtube popup blocker Youtube popup blocker
ID calcepdepicecadfaibokdeheekbihkc
Oficjalny URL https://chromewebstore.google.com/detail/youtube-popup-blocker/calcepdepicecadfaibokdeheekbihkc
Opis People often put an endscreen in a youtube video, but sometimes this ruins the entire end because of annoying popups on the screen…
Rozmiar pliku 6.86 KB
Liczba instalacji 1,403
Aktualna Wersja 2.0
Ostatnia Aktualizacja 2020-09-09
Data Publikacji 2020-08-31
Ocena 4.43/5 Łącznie 7 Oceny
Deweloper Dev Fasil
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki 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": []
}