Crunchyroll Intro Skipper
Allows intros to be skipped through a skip button on Crunchyroll
O que é Crunchyroll Intro Skipper?
Crunchyroll Intro Skipper é uma extensão do Chrome desenvolvida por Ian Hsiao, e sua principal característica é "Allows intros to be skipped through a skip button on Crunchyroll".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Crunchyroll Intro Skipper
Baixe arquivos de extensão Crunchyroll Intro Skipper 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
Skips anime intros with a single button. Finds when the intro ends by skipping to the timestamp of the first advertisement. *Update* it seems like crunchyroll has changed the location of their advertisements from right after the intro to somewhere in the middle so it's likely the extension will skip to somewhere random.
Informações Básicas da Extensão
Nome | Crunchyroll Intro Skipper |
ID | hbglapgegjickodindimfgfmjmhhdlii |
URL Oficial | https://chromewebstore.google.com/detail/crunchyroll-intro-skipper/hbglapgegjickodindimfgfmjmhhdlii |
Descrição | Allows intros to be skipped through a skip button on Crunchyroll |
Tamanho do Arquivo | 29.51 KB |
Contagem de Instalações | 1,091 |
Versão Atual | 1.0 |
Última Atualização | 2020-08-05 |
Data de Publicação | 2020-06-17 |
Classificação | 2.81/5 Total de 16 Avaliações |
Desenvolvedor | Ian Hsiao |
[email protected] | |
Tipo de Pagamento | free |
URL da Página de Ajuda | https://github.com/ianjjhsiao/skipintro |
Idiomas Suportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "content_scripts": [ { "all_frames": true, "js": [ "content_script.js" ], "matches": [ "https:\/\/static.crunchyroll.com\/vilos-v2\/web\/vilos\/player.html*" ] } ], "description": "Allows intros to be skipped through a skip button on Crunchyroll", "icons": { "16": "icon.png", "128": "Big_icon.png" }, "background": { "scripts": [ "background_script.js" ], "persistent": false }, "manifest_version": 2, "name": "Crunchyroll Intro Skipper", "permissions": [ "https:\/\/www.crunchyroll.com\/*" ], "version": "1.0" } |