Crunchy Queue
Download and share your Crunchyroll Queue!
O que é Crunchy Queue?
Crunchy Queue é uma extensão do Chrome desenvolvida por crunchyqueue, e sua principal característica é "Download and share your Crunchyroll Queue!".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Crunchy Queue
Baixe arquivos de extensão Crunchy Queue 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
This extension is designed to create, export, and import queues for Crunchyroll with more features to come! Add a large number of episodes to your queue at once, share your queue with other, and build a playlist to post on forums or your blog so other Crunchyroll users can import your recommendations! Updates ~ Shift + Click a series' tile to go to it's page on Crunchyroll.com ~ Directly paste text to load import instead of needing a file. Please email me if you are having problems and I will try and fix them.
Informações Básicas da Extensão
Nome | |
ID | japehhmklojagkpdpdnbhemkmmlgpkjn |
URL Oficial | https://chrome.google.com/webstore/detail/crunchy-queue/japehhmklojagkpdpdnbhemkmmlgpkjn |
Descrição | Download and share your Crunchyroll Queue! |
Tamanho do Arquivo | 230 KB |
Contagem de Instalações | 60 |
Versão Atual | 1.6.0 |
Última Atualização | 2019-08-22 |
Data de Publicação | 2019-08-22 |
Classificação | 5.00/5 Total de 1 Avaliações |
Desenvolvedor | crunchyqueue |
Tipo de Pagamento | free |
URL da Página de Ajuda | https://www.youtube.com/watch?v=kbjV_dV3ln4 |
Idiomas Suportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Crunchy Queue", "version": "1.6.0", "manifest_version": 2, "description": "Download and share your Crunchyroll Queue!", "icons": { "128": "icon.png" }, "browser_action": { "default_popup": "popup.html", "default_icon": "icon.png" }, "background": { "scripts": [ "background.js" ] }, "externally_connectable": { "matches": [ "http:\/\/*.crunchyroll.com\/*", "https:\/\/*.crunchyroll.com\/*" ] }, "permissions": [ "tabs", "cookies", "http:\/\/*.crunchyroll.com\/*", "https:\/\/*.crunchyroll.com\/*" ], "content_scripts": [ { "matches": [ "http:\/\/www.crunchyroll.com\/home\/queue*", "https:\/\/www.crunchyroll.com\/home\/queue*" ], "js": [ "content.js" ] } ] } |