Auto Pagination
Automatically add the next page to your browser, letting you click the forward button rather than rely on website controls.
Auto Paginationคืออะไร?
Auto Pagination เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://jackduffy.co.uk และคุณลักษณะหลักของมันคือ "Automatically add the next page to your browser, letting you click the forward button rather than rely on website controls."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Auto Pagination
ดาวน์โหลดไฟล์ส่วนขยาย Auto Pagination ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
The aim with this extension is to automatically figure out the next paginated URL for compatible websites, so you don't have to go hunting for the 'Next' or 'Page 10832578' button at the bottom of the site. Once you're ready to go forward, simply click the forwards button in your browser. I made this super quickly when browsing a search engine and wanted to use the dedicated buttons on my mouse to go forward. At the moment, it supports a couple of the major search engines as well as most WordPress sites (and any site that uses URL parameters like ?page=1 or ?page=2). I've not attempted to work with continuous feed style sites, nor will this work on everything. Please leave feedback or contact directly with sites you'd like me to take a look at :)
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Auto Pagination |
ID | bhbiffpojnfflamelholjhaelmmpbpgo |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/auto-pagination/bhbiffpojnfflamelholjhaelmmpbpgo |
คำอธิบาย | Automatically add the next page to your browser, letting you click the forward button rather than rely on website controls. |
ขนาดไฟล์ | 234 KB |
จำนวนการติดตั้ง | 476 |
เวอร์ชันปัจจุบัน | 0.0.1 |
อัปเดตครั้งล่าสุด | 2019-10-31 |
วันที่เผยแพร่ | 2019-10-30 |
คะแนน | 3.33/5 รวมทั้งหมด 3 คะแนน |
ผู้พัฒนา | https://jackduffy.co.uk |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Auto Pagination", "version": "0.0.1", "manifest_version": 2, "description": "Automatically add the next page to your browser, letting you click the forward button rather than rely on website controls.", "homepage_url": "https:\/\/jackduffy.co.uk", "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "default_locale": "en", "background": { "scripts": [ "js\/background.js" ], "persistent": true }, "permissions": [ "https:\/\/*\/*" ], "content_security_policy": "default-src 'self';", "content_scripts": [ { "matches": [ "https:\/\/*\/*" ], "js": [ "js\/content.js" ] } ] } |