Next!

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

什麼是Next!?

Next!是由FAB V開發的Chrome擴展程式,該擴展的主要功能是“Go to the possible next page using the url structure. On ww1.gogoanime.io, go to the next episode if any.”。

擴展截圖

screenshot

下載Next!擴展crx文件

下載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
官方網址 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"
    ]
}