TimeSkip

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

Τι είναι το TimeSkip;

Το TimeSkip είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Romen Poirier Taksev, και η κύρια λειτουργία του είναι "Skips you to the title card of an episode on CrunchyRoll. Currently works with One Piece and Black Clover.".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης TimeSkip

Λήψη αρχείων επέκτασης TimeSkip σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα TimeSkip TimeSkip
ID giaaeacihhelmkfcdfkepoijleaddajp
Επίσημο URL https://chromewebstore.google.com/detail/timeskip/giaaeacihhelmkfcdfkepoijleaddajp
Περιγραφή Skips you to the title card of an episode on CrunchyRoll. Currently works with One Piece and Black Clover.
Μέγεθος Αρχείου 11.28 KB
Αριθμός Εγκαταστάσεων 20
Τρέχουσα Έκδοση 1.3.0
Τελευταία Ενημέρωση 2021-10-14
Ημερομηνία Δημοσίευσης 2021-09-26
Αξιολόγηση 5.00/5 Συνολικά 2 Αξιολογήσεις
Προγραμματιστής Romen Poirier Taksev
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες 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"
    }
}