Crunchyroll Intro Skipper

Allows intros to be skipped through a skip button on Crunchyroll

Cos'è Crunchyroll Intro Skipper?

Crunchyroll Intro Skipper è un'estensione di Chrome sviluppata da Ian Hsiao, e la sua funzione principale è "Allows intros to be skipped through a skip button on Crunchyroll".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Crunchyroll Intro Skipper

Scarica i file di estensione Crunchyroll Intro Skipper in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Crunchyroll Intro Skipper Crunchyroll Intro Skipper
ID hbglapgegjickodindimfgfmjmhhdlii
URL Ufficiale https://chromewebstore.google.com/detail/crunchyroll-intro-skipper/hbglapgegjickodindimfgfmjmhhdlii
Descrizione Allows intros to be skipped through a skip button on Crunchyroll
Dimensione del File 29.51 KB
Conteggio Installazioni 1,091
Versione Corrente 1.0
Ultimo Aggiornamento 2020-08-05
Data di Pubblicazione 2020-06-17
Valutazione 2.81/5 Totale 16 Valutazioni
Sviluppatore Ian Hsiao
Email [email protected]
Tipo di Pagamento free
URL della Pagina di Aiuto https://github.com/ianjjhsiao/skipintro
Lingue Supportate 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"
}