Crunchyroll Intro Skipper

Allows intros to be skipped through a skip button on Crunchyroll

Was ist Crunchyroll Intro Skipper?

Crunchyroll Intro Skipper ist eine Chrome-Erweiterung, die von Ian Hsiao entwickelt wurde, und ihr Hauptmerkmal ist "Allows intros to be skipped through a skip button on Crunchyroll".

Erweiterungsscreenshots

screenshot

Crunchyroll Intro Skipper-Erweiterungs-CRX-Datei herunterladen

Laden Sie Crunchyroll Intro Skipper-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Crunchyroll Intro Skipper Crunchyroll Intro Skipper
ID hbglapgegjickodindimfgfmjmhhdlii
Offizielle URL https://chromewebstore.google.com/detail/crunchyroll-intro-skipper/hbglapgegjickodindimfgfmjmhhdlii
Beschreibung Allows intros to be skipped through a skip button on Crunchyroll
Dateigröße 29.51 KB
Installationsanzahl 1,091
Aktuelle Version 1.0
Letztes Update 2020-08-05
Veröffentlichungsdatum 2020-06-17
Bewertung 2.81/5 Insgesamt 16 Bewertungen
Entwickler Ian Hsiao
E-Mail [email protected]
Zahlungsart free
Hilfeseite URL https://github.com/ianjjhsiao/skipintro
Unterstützte Sprachen 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"
}