TimeSkip

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

Cos'è TimeSkip?

TimeSkip è un'estensione di Chrome sviluppata da Romen Poirier Taksev, e la sua funzione principale è "Skips you to the title card of an episode on CrunchyRoll. Currently works with One Piece and Black Clover.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione TimeSkip

Scarica i file di estensione TimeSkip 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

                        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.                    

Informazioni di Base sull'Estensione

Nome TimeSkip TimeSkip
ID giaaeacihhelmkfcdfkepoijleaddajp
URL Ufficiale https://chromewebstore.google.com/detail/timeskip/giaaeacihhelmkfcdfkepoijleaddajp
Descrizione Skips you to the title card of an episode on CrunchyRoll. Currently works with One Piece and Black Clover.
Dimensione del File 11.28 KB
Conteggio Installazioni 20
Versione Corrente 1.3.0
Ultimo Aggiornamento 2021-10-14
Data di Pubblicazione 2021-09-26
Valutazione 5.00/5 Totale 2 Valutazioni
Sviluppatore Romen Poirier Taksev
Email [email protected]
Tipo di Pagamento free
Lingue Supportate 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"
    }
}