Next!
Go to the possible next page using the url structure. On ww1.gogoanime.io, go to the next episode if any.
Co je Next!?
Next! je rozšíření Chrome vyvinuté FAB V, a jeho hlavní funkcí je „Go to the possible next page using the url structure. On ww1.gogoanime.io, go to the next episode if any.“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření Next!
Stáhněte si soubory rozšíření Next! ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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!
Základní Informace o Rozšíření
Název | Next! |
ID | pghjdcenfilghlfkedconkjfpbeibnao |
Oficiální URL | https://chromewebstore.google.com/detail/next/pghjdcenfilghlfkedconkjfpbeibnao |
Popis | Go to the possible next page using the url structure. On ww1.gogoanime.io, go to the next episode if any. |
Velikost souboru | 94.35 KB |
Počet instalací | 11 |
Aktuální Verze | 1.0 |
Poslední Aktualizace | 2017-06-18 |
Datum Vydání | 2017-06-18 |
Vývojář | FAB V |
Typ Platby | free |
Podporované Jazyky | 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" ] } |