Autoskip Netflix Intro

Skip the intro's on netflix

Vad är Autoskip Netflix Intro?

Autoskip Netflix Intro är en Chrome-tillägg utvecklad av Lukas Demeyere, och dess huvudfunktion är "Skip the intro's on netflix".

Tilläggsskärmbilder

screenshot

Ladda ner Autoskip Netflix Intro-förlängningens CRX-fil

Ladda ner Autoskip Netflix Intro-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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. ---                    

Grundläggande Information om Tillägg

Namn Autoskip Netflix Intro Autoskip Netflix Intro
ID olljgnejdhpmoolooihgcdoannkfodji
Officiell webbadress https://chromewebstore.google.com/detail/autoskip-netflix-intro/olljgnejdhpmoolooihgcdoannkfodji
Beskrivning Skip the intro's on netflix
Filstorlek 463 KB
Antal Installationer 158
Aktuell Version 0.0.5
Senast Uppdaterad 2023-04-13
Publiceringsdatum 2020-06-10
Betyg 2.78/5 Totalt 9 Betyg
Utvecklare Lukas Demeyere
E-post [email protected]
Betalningssätt free
Stödda Språk 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"
    ]
}