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.」です。
拡張機能のスクリーンショット
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! |
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" ] } |