Next!

Go to the possible next page using the url structure. On ww1.gogoanime.io, go to the next episode if any.

Qu'est-ce que Next! ?

Next! est une extension Chrome développée par FAB V, et sa fonction principale est "Go to the possible next page using the url structure. On ww1.gogoanime.io, go to the next episode if any.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Next!

Téléchargez les fichiers d'extension Next! au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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!                    

Informations de Base sur l'Extension

Nom Next! Next!
ID pghjdcenfilghlfkedconkjfpbeibnao
URL Officiel https://chromewebstore.google.com/detail/next/pghjdcenfilghlfkedconkjfpbeibnao
Description Go to the possible next page using the url structure. On ww1.gogoanime.io, go to the next episode if any.
Taille du Fichier 94.35 KB
Nombre d'Installations 11
Version Actuelle 1.0
Dernière Mise à Jour 2017-06-18
Date de Publication 2017-06-18
Développeur FAB V
Type de Paiement free
Langues Prises en Charge 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"
    ]
}