TimeSkip

Skips you to the title card of an episode on CrunchyRoll. Currently works with One Piece and Black Clover.

Was ist TimeSkip?

TimeSkip ist eine Chrome-Erweiterung, die von Romen Poirier Taksev entwickelt wurde, und ihr Hauptmerkmal ist "Skips you to the title card of an episode on CrunchyRoll. Currently works with One Piece and Black Clover.".

Erweiterungsscreenshots

screenshot

TimeSkip-Erweiterungs-CRX-Datei herunterladen

Laden Sie TimeSkip-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

                        Tired of having to look in the comments to find the time of the title card while binging anime? Look no further! TimeSkip will look through the comments and skip you to the title card, all at the press of a button.                    

Grundlegende Informationen zur Erweiterung

Name TimeSkip TimeSkip
ID giaaeacihhelmkfcdfkepoijleaddajp
Offizielle URL https://chromewebstore.google.com/detail/timeskip/giaaeacihhelmkfcdfkepoijleaddajp
Beschreibung Skips you to the title card of an episode on CrunchyRoll. Currently works with One Piece and Black Clover.
Dateigröße 11.28 KB
Installationsanzahl 20
Aktuelle Version 1.3.0
Letztes Update 2021-10-14
Veröffentlichungsdatum 2021-09-26
Bewertung 5.00/5 Insgesamt 2 Bewertungen
Entwickler Romen Poirier Taksev
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "TimeSkip",
    "version": "1.3.0",
    "description": "Skips you to the title card of an episode on CrunchyRoll. Currently works with One Piece and Black Clover.",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "page_action": {
        "default_popup": "popup.htm",
        "default_icon": []
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.crunchyroll.com\/*"
            ],
            "run_at": "document_end",
            "all_frames": true,
            "js": [
                "playback.js",
                "contentScript.js"
            ]
        }
    ],
    "permissions": [
        "activeTab",
        "declarativeContent",
        "tabs"
    ],
    "manifest_version": 2,
    "icons": {
        "128": "TimeSkip 128x128.png"
    }
}