Crunchyroll Intro Skipper

Allows intros to be skipped through a skip button on Crunchyroll

Wat is Crunchyroll Intro Skipper?

Crunchyroll Intro Skipper is een Chrome-extensie ontwikkeld door Ian Hsiao, en de belangrijkste functie is "Allows intros to be skipped through a skip button on Crunchyroll".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Crunchyroll Intro Skipper

Download Crunchyroll Intro Skipper-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Crunchyroll Intro Skipper Crunchyroll Intro Skipper
ID hbglapgegjickodindimfgfmjmhhdlii
Officiële URL https://chromewebstore.google.com/detail/crunchyroll-intro-skipper/hbglapgegjickodindimfgfmjmhhdlii
Beschrijving Allows intros to be skipped through a skip button on Crunchyroll
Bestandsgrootte 29.51 KB
Aantal Installaties 1,091
Huidige Versie 1.0
Laatst Bijgewerkt 2020-08-05
Publicatiedatum 2020-06-17
Beoordeling 2.81/5 Totaal 16 Beoordelingen
Ontwikkelaar Ian Hsiao
E-mail [email protected]
Betalingswijze free
Help Pagina-URL https://github.com/ianjjhsiao/skipintro
Ondersteunde Talen 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"
}