Next!

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

Next! là gì?

Next! là một tiện ích mở rộng Chrome được phát triển bởi FAB V, và tính năng chính của nó là "Go to the possible next page using the url structure. On ww1.gogoanime.io, go to the next episode if any.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Next!

Tải xuống các tệp mở rộng Next! dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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!                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Next! Next!
ID pghjdcenfilghlfkedconkjfpbeibnao
URL Chính Thức https://chromewebstore.google.com/detail/next/pghjdcenfilghlfkedconkjfpbeibnao
Mô tả Go to the possible next page using the url structure. On ww1.gogoanime.io, go to the next episode if any.
Kích Thước Tệp 94.35 KB
Số Lần Cài Đặt 11
Phiên Bản Hiện Tại 1.0
Cập Nhật Lần Cuối 2017-06-18
Ngày Phát Hành 2017-06-18
Nhà Phát Triển FAB V
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}