Crunchyroll Timestamp Helper
This extension will allow you to click on timestamps from chat and move to the specified time in the video
O que é Crunchyroll Timestamp Helper?
Crunchyroll Timestamp Helper é uma extensão do Chrome desenvolvida por Mario, e sua principal característica é "This extension will allow you to click on timestamps from chat and move to the specified time in the video".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Crunchyroll Timestamp Helper
Baixe arquivos de extensão Crunchyroll Timestamp Helper 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
Allows timestamps to be clickable in chat and skips forward to the timestamp when clicked.
Informações Básicas da Extensão
Nome | Crunchyroll Timestamp Helper |
ID | pamhedcogfnafpdblkogpeediihohjob |
URL Oficial | https://chromewebstore.google.com/detail/crunchyroll-timestamp-hel/pamhedcogfnafpdblkogpeediihohjob |
Descrição | This extension will allow you to click on timestamps from chat and move to the specified time in the video |
Tamanho do Arquivo | 136 KB |
Contagem de Instalações | 34 |
Versão Atual | 1.0.3 |
Última Atualização | 2019-10-20 |
Data de Publicação | 2019-10-20 |
Desenvolvedor | Mario |
Tipo de Pagamento | free |
Idiomas Suportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Crunchyroll Timestamp Helper", "description": "This extension will allow you to click on timestamps from chat and move to the specified time in the video", "version": "1.0.3", "author": "Mathew Anjos", "content_scripts": [ { "matches": [ "https:\/\/www.crunchyroll.com\/*" ], "js": [ "content.js" ], "run_at": "document_end" } ], "background": { "scripts": [ "background.js" ], "persistent": false }, "browser_action": { "default_icon": "images\/icon.png" }, "icons": { "16": "images\/icon.png", "48": "images\/icon.png", "128": "images\/icon.png" }, "permissions": [ "activeTab", "*:\/\/*.crunchyroll.com\/*" ] } |