Next Page
When viewing pages or images which are numbered and in serial order,this extension can help you navigate to Next Page.
Next Page란 무엇입니까?
Next Page은(는) Surya에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "When viewing pages or images which are numbered and in serial order,this extension can help you navigate to Next Page."입니다.
확장 프로그램 스크린샷
Next Page 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
This extension will help you navigate serial numbered pages or images. "Next Page" Icon will show up if it detects number in url. If clicked, will increment the page number by one. You can use this to navigate manga, comics, photo galleries etc. provided they are numbered and in serial order. [++NEW++] v1.1.2 *New* Options page with configurable Hotkey shortcut and create custom logic *New* Settings saved in IndexedDB *New* Created a new facebook Page example urls :- www.foo.com/image_001.html -> www.foo.com/image_002.html www.bar.com/page_001.jpg -> www.bar.com/page_002.jpg
확장 프로그램 기본 정보
이름 | Next Page |
ID | onajnlcpcfhahbmnppgkajefblapkhln |
공식 URL | https://chromewebstore.google.com/detail/next-page/onajnlcpcfhahbmnppgkajefblapkhln |
설명 | When viewing pages or images which are numbered and in serial order,this extension can help you navigate to Next Page. |
파일 크기 | 764 KB |
설치 횟수 | 896 |
현재 버전 | 1.1.2 |
최근 업데이트 | 2014-09-17 |
출시 날짜 | 2014-09-16 |
평점 | 3.48/5 총 31 개의 평점 |
개발자 | Surya |
이메일 | [email protected] |
결제 유형 | free |
개인정보 보호 정책 페이지 URL | https://tv-watchlist.github.io/privacy-policy |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Next Page", "version": "1.1.2", "description": "When viewing pages or images which are numbered and in serial order,this extension can help you navigate to Next Page.", "icons": { "16": "next-iconx16.png", "48": "next-iconx48.png", "128": "next-iconx128.png" }, "page_action": { "default_title": "Next Page v1.1.2", "default_icon": "next-iconx19.png" }, "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'", "permissions": [ "alarms", "tabs", "https:\/\/*\/*", "http:\/\/*\/*" ], "content_scripts": [ { "matches": [ "https:\/\/*\/*", "http:\/\/*\/*" ], "js": [ "js\/jquery-2.1.0.min.js", "js\/mousetrap.js", "contentscript.js" ], "run_at": "document_idle" } ], "background": { "page": "background.html", "persistent": false }, "options_page": "options.html", "web_accessible_resources": [ "next-iconx16.png", "next-iconx48.png", "next-iconx128.png", "js\/jquery-2.1.0.min.js" ] } |