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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Surya และคุณลักษณะหลักของมันคือ "When viewing pages or images which are numbered and in serial order,this extension can help you navigate to Next Page."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Next Page
ดาวน์โหลดไฟล์ส่วนขยาย Next Page ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
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" ] } |