Crunchyroll Intro Skipper

Allows intros to be skipped through a skip button on Crunchyroll

Co je Crunchyroll Intro Skipper?

Crunchyroll Intro Skipper je rozšíření Chrome vyvinuté Ian Hsiao, a jeho hlavní funkcí je „Allows intros to be skipped through a skip button on Crunchyroll“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření Crunchyroll Intro Skipper

Stáhněte si soubory rozšíření Crunchyroll Intro Skipper 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í

                        Skips anime intros with a single button.
Finds when the intro ends by skipping to the timestamp of the first advertisement.
*Update* it seems like crunchyroll has changed the location of their advertisements from right after the intro to somewhere in the middle so it's likely the extension will skip to somewhere random.                    

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

Název Crunchyroll Intro Skipper Crunchyroll Intro Skipper
ID hbglapgegjickodindimfgfmjmhhdlii
Oficiální URL https://chromewebstore.google.com/detail/crunchyroll-intro-skipper/hbglapgegjickodindimfgfmjmhhdlii
Popis Allows intros to be skipped through a skip button on Crunchyroll
Velikost souboru 29.51 KB
Počet instalací 1,091
Aktuální Verze 1.0
Poslední Aktualizace 2020-08-05
Datum Vydání 2020-06-17
Hodnocení 2.81/5 Celkem 16 Hodnocení
Vývojář Ian Hsiao
E-mail [email protected]
Typ Platby free
URL Stránky Nápovědy https://github.com/ianjjhsiao/skipintro
Podporované Jazyky en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "content_scripts": [
        {
            "all_frames": true,
            "js": [
                "content_script.js"
            ],
            "matches": [
                "https:\/\/static.crunchyroll.com\/vilos-v2\/web\/vilos\/player.html*"
            ]
        }
    ],
    "description": "Allows intros to be skipped through a skip button on Crunchyroll",
    "icons": {
        "16": "icon.png",
        "128": "Big_icon.png"
    },
    "background": {
        "scripts": [
            "background_script.js"
        ],
        "persistent": false
    },
    "manifest_version": 2,
    "name": "Crunchyroll Intro Skipper",
    "permissions": [
        "https:\/\/www.crunchyroll.com\/*"
    ],
    "version": "1.0"
}