Next!
Go to the possible next page using the url structure. On ww1.gogoanime.io, go to the next episode if any.
O que é Next!?
Next! é uma extensão do Chrome desenvolvida por FAB V, e sua principal característica é "Go to the possible next page using the url structure. On ww1.gogoanime.io, go to the next episode if any.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Next!
Baixe arquivos de extensão Next! 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
Go to the possible next page using the url structure. More precisely, increment in the url the last number if any is found. On ww1.gogoanime.io, go to the next episode if any. I made this extension mainly because I wanted to learn how to make one. If this extension happens to be useful to you, that's great!
Informações Básicas da Extensão
Nome | Next! |
ID | pghjdcenfilghlfkedconkjfpbeibnao |
URL Oficial | https://chromewebstore.google.com/detail/next/pghjdcenfilghlfkedconkjfpbeibnao |
Descrição | Go to the possible next page using the url structure. On ww1.gogoanime.io, go to the next episode if any. |
Tamanho do Arquivo | 94.35 KB |
Contagem de Instalações | 11 |
Versão Atual | 1.0 |
Última Atualização | 2017-06-18 |
Data de Publicação | 2017-06-18 |
Desenvolvedor | FAB V |
Tipo de Pagamento | free |
Idiomas Suportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Next!", "description": "Go to the possible next page using the url structure. On ww1.gogoanime.io, go to the next episode if any.", "version": "1.0", "icons": { "16": "icon16.png", "32": "icon32.png", "48": "icon48.png", "64": "icon64.png", "128": "icon128.png", "256": "icon256.png" }, "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "contentScript.js" ] } ], "browser_action": { "default_icon": "wait.png", "default_title": "Analysing" }, "permissions": [ "activeTab", "tabs" ] } |