TimeSkip

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

Qu'est-ce que TimeSkip ?

TimeSkip est une extension Chrome développée par Romen Poirier Taksev, et sa fonction principale est "Skips you to the title card of an episode on CrunchyRoll. Currently works with One Piece and Black Clover.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension TimeSkip

Téléchargez les fichiers d'extension TimeSkip au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom TimeSkip TimeSkip
ID giaaeacihhelmkfcdfkepoijleaddajp
URL Officiel https://chromewebstore.google.com/detail/timeskip/giaaeacihhelmkfcdfkepoijleaddajp
Description Skips you to the title card of an episode on CrunchyRoll. Currently works with One Piece and Black Clover.
Taille du Fichier 11.28 KB
Nombre d'Installations 20
Version Actuelle 1.3.0
Dernière Mise à Jour 2021-10-14
Date de Publication 2021-09-26
Évaluation 5.00/5 Total 2 Évaluations
Développeur Romen Poirier Taksev
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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"
    }
}