Next!
Go to the possible next page using the url structure. On ww1.gogoanime.io, go to the next episode if any.
Wat is Next!?
Next! is een Chrome-extensie ontwikkeld door FAB V, en de belangrijkste functie is "Go to the possible next page using the url structure. On ww1.gogoanime.io, go to the next episode if any.".
Extensie Screenshots
Download het CRX-bestand van de extensie Next!
Download Next!-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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!
Basisinformatie over de Extensie
Naam | Next! |
ID | pghjdcenfilghlfkedconkjfpbeibnao |
Officiële URL | https://chromewebstore.google.com/detail/next/pghjdcenfilghlfkedconkjfpbeibnao |
Beschrijving | Go to the possible next page using the url structure. On ww1.gogoanime.io, go to the next episode if any. |
Bestandsgrootte | 94.35 KB |
Aantal Installaties | 11 |
Huidige Versie | 1.0 |
Laatst Bijgewerkt | 2017-06-18 |
Publicatiedatum | 2017-06-18 |
Ontwikkelaar | FAB V |
Betalingswijze | free |
Ondersteunde Talen | 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" ] } |