TimeSkip
Skips you to the title card of an episode on CrunchyRoll. Currently works with One Piece and Black Clover.
O que é TimeSkip?
TimeSkip é uma extensão do Chrome desenvolvida por Romen Poirier Taksev, e sua principal característica é "Skips you to the title card of an episode on CrunchyRoll. Currently works with One Piece and Black Clover.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão TimeSkip
Baixe arquivos de extensão TimeSkip no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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.
Informações Básicas da Extensão
Nome | TimeSkip |
ID | giaaeacihhelmkfcdfkepoijleaddajp |
URL Oficial | https://chromewebstore.google.com/detail/timeskip/giaaeacihhelmkfcdfkepoijleaddajp |
Descrição | Skips you to the title card of an episode on CrunchyRoll. Currently works with One Piece and Black Clover. |
Tamanho do Arquivo | 11.28 KB |
Contagem de Instalações | 20 |
Versão Atual | 1.3.0 |
Última Atualização | 2021-10-14 |
Data de Publicação | 2021-09-26 |
Classificação | 5.00/5 Total de 2 Avaliações |
Desenvolvedor | Romen Poirier Taksev |
[email protected] | |
Tipo de Pagamento | free |
Idiomas Suportados | 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" } } |