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 Ramon Quitales 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

                        This extension parses through the episode comments to determine if there are any intro timestamps posted. If there are no valid timestamps within the comments, it will fallback to using Crunchyroll's ad locations to determine the best position.

To use this extension, a `SKIP INTRO` button is overlaid onto the Crunchyroll video player which you can click to skip the episode intro. The button also indicates how it got the timestamp (either through someone's comment on the page, or through ad locations).                    

Grundlegende Informationen zur Erweiterung

Name Crunchyroll Intro Skipper Crunchyroll Intro Skipper
ID enphflaephhmabkpchhgkhkfcblbhiip
Offizielle URL https://chromewebstore.google.com/detail/crunchyroll-intro-skipper/enphflaephhmabkpchhgkhkfcblbhiip
Beschreibung Allows intros to be skipped through a skip button on Crunchyroll
Dateigröße 15.16 KB
Installationsanzahl 1,310
Aktuelle Version 0.2.1
Letztes Update 2021-04-06
Veröffentlichungsdatum 2021-03-02
Bewertung 3.57/5 Insgesamt 14 Bewertungen
Entwickler Ramon Quitales
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/rquitales/crunchyroll-intro-skipper
Hilfeseite URL https://github.com/rquitales/crunchyroll-intro-skipper/issues
Unterstützte Sprachen en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "content_scripts": [
        {
            "all_frames": true,
            "js": [
                "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": "assets\/images\/icon.png",
        "128": "assets\/images\/large_icon.png"
    },
    "background": {
        "scripts": [
            "js\/background_script.js"
        ],
        "persistent": false
    },
    "manifest_version": 2,
    "name": "Crunchyroll Intro Skipper",
    "author": "Ramon Quitales",
    "permissions": [
        "https:\/\/www.crunchyroll.com\/*"
    ],
    "version": "0.2.1"
}