NflxIntroSkip (Netflix Intro Skip)

Automatically skip intros in the Netflix web-player

Co to jest NflxIntroSkip (Netflix Intro Skip)?

NflxIntroSkip (Netflix Intro Skip) to rozszerzenie Chrome opracowane przez gmertes, a jego główną funkcją jest „Automatically skip intros in the Netflix web-player”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia NflxIntroSkip (Netflix Intro Skip)

Pobierz pliki rozszerzeń NflxIntroSkip (Netflix Intro Skip) 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

                        A lightweight browser extension that does one thing and one thing only: automatically skip show intros on Netflix. 

-The best at what it does: automatically click on the Skip Intro button in Netflix
-Install and forget, there's no configuration
-Extremely small footprint and zero overhead, only contains the absolute bare minimum to perform its function
-No analytics
-Free and open source                    

Podstawowe informacje o rozszerzeniu

Nazwa NflxIntroSkip (Netflix Intro Skip) NflxIntroSkip (Netflix Intro Skip)
ID jiindpkmmoompocmhgnfabfhlhniolpl
Oficjalny URL https://chromewebstore.google.com/detail/nflxintroskip-netflix-int/jiindpkmmoompocmhgnfabfhlhniolpl
Opis Automatically skip intros in the Netflix web-player
Rozmiar pliku 9.26 KB
Liczba instalacji 169
Aktualna Wersja 1.0.0
Ostatnia Aktualizacja 2021-10-20
Data Publikacji 2021-10-20
Ocena 5.00/5 Łącznie 4 Oceny
Deweloper gmertes
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/gmertes/NflxIntroSkip
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "short_name": "NflxIntroSkip",
    "description": "Automatically skip intros in the Netflix web-player",
    "version": "1.0.0",
    "manifest_version": 2,
    "name": "NflxIntroSkip (Netflix Intro Skip)",
    "homepage_url": "https:\/\/github.com\/gmertes\/NflxIntroSkip",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "permissions": [
        "https:\/\/www.netflix.com\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.netflix.com\/*"
            ],
            "js": [
                "content.min.js"
            ],
            "run_at": "document_start"
        }
    ]
}