TimeSkip
Skips you to the title card of an episode on CrunchyRoll. Currently works with One Piece and Black Clover.
Co je TimeSkip?
TimeSkip je rozšíření Chrome vyvinuté Romen Poirier Taksev, a jeho hlavní funkcí je „Skips you to the title card of an episode on CrunchyRoll. Currently works with One Piece and Black Clover.“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření TimeSkip
Stáhněte si soubory rozšíření TimeSkip ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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.
Základní Informace o Rozšíření
Název | TimeSkip |
ID | giaaeacihhelmkfcdfkepoijleaddajp |
Oficiální URL | https://chromewebstore.google.com/detail/timeskip/giaaeacihhelmkfcdfkepoijleaddajp |
Popis | Skips you to the title card of an episode on CrunchyRoll. Currently works with One Piece and Black Clover. |
Velikost souboru | 11.28 KB |
Počet instalací | 20 |
Aktuální Verze | 1.3.0 |
Poslední Aktualizace | 2021-10-14 |
Datum Vydání | 2021-09-26 |
Hodnocení | 5.00/5 Celkem 2 Hodnocení |
Vývojář | Romen Poirier Taksev |
[email protected] | |
Typ Platby | free |
Podporované Jazyky | 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" } } |