Page Turner
Navigate paginated webpages using your keyboard's arrow keys. Perfect for search results, image galleries and more.
Page Turnerคืออะไร?
Page Turner เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://www.nathankowald.com และคุณลักษณะหลักของมันคือ "Navigate paginated webpages using your keyboard's arrow keys. Perfect for search results, image galleries and more."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Page Turner
ดาวน์โหลดไฟล์ส่วนขยาย Page Turner ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Page Turner detects back and next links in websites. It allows you to 'turn the page' using your keyboard's left and right arrow keys. Page Turner also prerenders next pages for fast page loads.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Page Turner |
ID | fpbddhncmmhkaofhcnkjgcdbgcmomebo |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/page-turner/fpbddhncmmhkaofhcnkjgcdbgcmomebo |
คำอธิบาย | Navigate paginated webpages using your keyboard's arrow keys. Perfect for search results, image galleries and more. |
ขนาดไฟล์ | 32.27 KB |
จำนวนการติดตั้ง | 247 |
เวอร์ชันปัจจุบัน | 3.0.2 |
อัปเดตครั้งล่าสุด | 2019-05-08 |
วันที่เผยแพร่ | 2019-05-07 |
คะแนน | 4.14/5 รวมทั้งหมด 7 คะแนน |
ผู้พัฒนา | https://www.nathankowald.com |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/n8kowald/page-turner |
URL หน้าช่วยเหลือ | https://github.com/n8kowald/page-turner/issues |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Page Turner", "version": "3.0.2", "manifest_version": 2, "description": "Navigate paginated webpages using your keyboard's arrow keys. Perfect for search results, image galleries and more.", "browser_action": { "default_icon": "icons\/inactive.png", "default_popup": "popup\/popup.html" }, "permissions": [ "tabs", "storage", "http:\/\/*\/*", "https:\/\/*\/*" ], "web_accessible_resources": [ "icons\/arrow-next.png", "icons\/arrow-back.png" ], "icons": { "16": "icons\/inactive.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "page-turner.js" ], "css": [ "styles.css" ] } ] } |