Autoskip Netflix Intro

Skip the intro's on netflix

Co to jest Autoskip Netflix Intro?

Autoskip Netflix Intro to rozszerzenie Chrome opracowane przez Lukas Demeyere, a jego główną funkcją jest „Skip the intro's on netflix”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Autoskip Netflix Intro

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

                        Binging your favourite show and getting tired of clicking the button to skip the intro of your Netflix episode? This extension does this automatically for you. You can easy enable/disable this feature.

Skip to Next Episode

 --- You need to refresh your Netflix tab so the extension is loaded and can skip the intro automatically. ---                    

Podstawowe informacje o rozszerzeniu

Nazwa Autoskip Netflix Intro Autoskip Netflix Intro
ID olljgnejdhpmoolooihgcdoannkfodji
Oficjalny URL https://chromewebstore.google.com/detail/autoskip-netflix-intro/olljgnejdhpmoolooihgcdoannkfodji
Opis Skip the intro's on netflix
Rozmiar pliku 463 KB
Liczba instalacji 158
Aktualna Wersja 0.0.5
Ostatnia Aktualizacja 2023-04-13
Data Publikacji 2020-06-10
Ocena 2.78/5 Łącznie 9 Oceny
Deweloper Lukas Demeyere
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Autoskip Netflix Intro",
    "version": "0.0.5",
    "manifest_version": 3,
    "description": "Skip the intro's on netflix",
    "icons": {
        "16": "icons\/netskips16.png",
        "48": "icons\/netskips48.png",
        "128": "icons\/netskips128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.netflix.com\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_end"
        }
    ],
    "action": {
        "default_popup": "popup.html",
        "default_title": "Start skipping"
    },
    "permissions": [
        "storage"
    ]
}