SkIntro

This extension auto skips intro for streaming services.

Co je SkIntro?

SkIntro je rozšíření Chrome vyvinuté Rehan Ahmed, a jeho hlavní funkcí je „This extension auto skips intro for streaming services.“.

Snímky obrazovky rozšíření

screenshot
screenshot
screenshot

Stáhnout soubor CRX rozšíření SkIntro

Stáhněte si soubory rozšíření SkIntro ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        Do you always press that "Skip Intro" button when watching a show online? What if there was an app that did that for you?

SkIntro was born out of that idea and it supports auto-skipping intros on multiple streaming services,
- Netflix
- Disney+
- Peacock
- Amazon PrimeVideo

Support for more services is coming soon.

It also works as an ad-blocker by auto-skipping ads on YouTube by pressing the "Skip Ad" button as soon as it appears.                    

Základní Informace o Rozšíření

Název SkIntro SkIntro
ID acjikceibgbijbnhfialnjhilckdajan
Oficiální URL https://chromewebstore.google.com/detail/skintro/acjikceibgbijbnhfialnjhilckdajan
Popis This extension auto skips intro for streaming services.
Velikost souboru 168 KB
Počet instalací 465
Aktuální Verze 1.1
Poslední Aktualizace 2021-09-15
Datum Vydání 2021-07-21
Hodnocení 4.20/5 Celkem 5 Hodnocení
Vývojář Rehan Ahmed
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://github.com/reallyrehan/skintro
URL Stránky Nápovědy https://github.com/reallyrehan/skintro
Podporované Jazyky en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "SkIntro",
    "description": "This extension auto skips intro for streaming services.",
    "version": "1.1",
    "icons": {
        "128": "icon.png"
    },
    "options_page": "options.html",
    "browser_action": {
        "default_icon": "images\/icon.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "tabs",
        "storage"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.netflix.com\/*",
                "https:\/\/*.amazon.com\/*",
                "https:\/\/*.peacocktv.com\/*",
                "https:\/\/*.disneyplus.com\/*",
                "https:\/\/*.youtube.com\/*"
            ],
            "js": [
                "jquery.min.js",
                "utilities.js"
            ],
            "run_at": "document_end"
        }
    ]
}