Next!

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

Τι είναι το Next!;

Το Next! είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον FAB V, και η κύρια λειτουργία του είναι "Go to the possible next page using the url structure. On ww1.gogoanime.io, go to the next episode if any.".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης Next!

Λήψη αρχείων επέκτασης Next! σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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!                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Next! Next!
ID pghjdcenfilghlfkedconkjfpbeibnao
Επίσημο URL https://chromewebstore.google.com/detail/next/pghjdcenfilghlfkedconkjfpbeibnao
Περιγραφή Go to the possible next page using the url structure. On ww1.gogoanime.io, go to the next episode if any.
Μέγεθος Αρχείου 94.35 KB
Αριθμός Εγκαταστάσεων 11
Τρέχουσα Έκδοση 1.0
Τελευταία Ενημέρωση 2017-06-18
Ημερομηνία Δημοσίευσης 2017-06-18
Προγραμματιστής FAB V
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες 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"
    ]
}