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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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" ] } |