TimeSkip
Skips you to the title card of an episode on CrunchyRoll. Currently works with One Piece and Black Clover.
Vad är TimeSkip?
TimeSkip är en Chrome-tillägg utvecklad av Romen Poirier Taksev, och dess huvudfunktion är "Skips you to the title card of an episode on CrunchyRoll. Currently works with One Piece and Black Clover.".
Tilläggsskärmbilder
Ladda ner TimeSkip-förlängningens CRX-fil
Ladda ner TimeSkip-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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.
Grundläggande Information om Tillägg
Namn | TimeSkip |
ID | giaaeacihhelmkfcdfkepoijleaddajp |
Officiell webbadress | https://chromewebstore.google.com/detail/timeskip/giaaeacihhelmkfcdfkepoijleaddajp |
Beskrivning | Skips you to the title card of an episode on CrunchyRoll. Currently works with One Piece and Black Clover. |
Filstorlek | 11.28 KB |
Antal Installationer | 20 |
Aktuell Version | 1.3.0 |
Senast Uppdaterad | 2021-10-14 |
Publiceringsdatum | 2021-09-26 |
Betyg | 5.00/5 Totalt 2 Betyg |
Utvecklare | Romen Poirier Taksev |
E-post | [email protected] |
Betalningssätt | free |
Stödda Språk | 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" } } |