Netflix Skipper

Automatically skip Netflix intros, recaps, and next episode prompts.

Co to jest Netflix Skipper?

Netflix Skipper to rozszerzenie Chrome opracowane przez Ran Ribenzaft, a jego główną funkcją jest „Automatically skip Netflix intros, recaps, and next episode prompts.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia Netflix Skipper

Pobierz pliki rozszerzeń Netflix Skipper 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

                        Automatically skip Netflix intros, recaps, and next episode prompts.

Don't waste any more time waiting or clicking on intros, recaps, and next episode buttons.

Once the extension is installed, reload or open a Netflix Tab, and it will work automatically. Through the popup, you can configure which events (intros, recaps, and next episode) you would like to skip.

This extension supports ALL Netflix languages!

GitHub repo: https://github.com/ranrib/netflix-skipper                    

Podstawowe informacje o rozszerzeniu

Nazwa Netflix Skipper Netflix Skipper
ID lgmpgoepilkhieepoliajnandndkffab
Oficjalny URL https://chromewebstore.google.com/detail/netflix-skipper/lgmpgoepilkhieepoliajnandndkffab
Opis Automatically skip Netflix intros, recaps, and next episode prompts.
Rozmiar pliku 147 KB
Liczba instalacji 3,415
Aktualna Wersja 1.0
Ostatnia Aktualizacja 2022-01-27
Data Publikacji 2022-01-27
Ocena 5.00/5 Łącznie 9 Oceny
Deweloper Ran Ribenzaft
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/ranrib/netflix-skipper
Adres URL Strony Pomocy https://github.com/ranrib/netflix-skipper
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Netflix Skipper",
    "description": "Automatically skip Netflix intros, recaps, and next episode prompts.",
    "author": "Ran Ribenzaft",
    "version": "1.0",
    "manifest_version": 3,
    "background": {
        "service_worker": "src\/background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "src\/content_script.js"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "storage",
        "activeTab"
    ],
    "action": {
        "default_popup": "src\/popup.html",
        "default_icon": {
            "16": "images\/netflix-skipper-16.png",
            "32": "images\/netflix-skipper-32.png",
            "48": "images\/netflix-skipper-48.png",
            "128": "images\/netflix-skipper-128.png"
        }
    },
    "icons": {
        "16": "images\/netflix-skipper-16.png",
        "32": "images\/netflix-skipper-32.png",
        "48": "images\/netflix-skipper-48.png",
        "128": "images\/netflix-skipper-128.png"
    }
}