Navigation Shortcuts
Allows next, up, prev, and top links to be used with simple keyboard shortcuts.
Navigation Shortcutsคืออะไร?
Navigation Shortcuts เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Kenaniah Cerny และคุณลักษณะหลักของมันคือ "Allows next, up, prev, and top links to be used with simple keyboard shortcuts."
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Navigation Shortcuts
ดาวน์โหลดไฟล์ส่วนขยาย Navigation Shortcuts ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
A must-have extension for reading online books, documentation, tutorials, and blogs! Easily navigate in between webpages with these extremely simple keyboard shortcuts: Space Bar - navigates to the next page when scrolled to the bottom Shift + Space Bar - navigates to the previous page when scrolled to the top. (Use the Option key instead of the Ctrl key on Mac) Ctrl + Right - navigates to the next page Ctrl + Left - navigates to the previous page Ctrl + Up - navigates to section's index page Ctrl + Shift + Up - navigates to the top page Uses HTML's rel attribute and smart link detection to determine where to go. Currently rel="next", rel="prev", rel="up", and rel="top" are supported. Source code at https://github.com/kenaniah/chrome-navigation-plugin/ Improvements and suggestions are welcome!
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | |
ID | ioogigbgjmadikfocfdmmdlghogaehca |
URL อย่างเป็นทางการ | https://chrome.google.com/webstore/detail/navigation-shortcuts/ioogigbgjmadikfocfdmmdlghogaehca |
คำอธิบาย | Allows next, up, prev, and top links to be used with simple keyboard shortcuts. |
ขนาดไฟล์ | 26.33 KB |
จำนวนการติดตั้ง | 484 |
เวอร์ชันปัจจุบัน | 2017.8.30 |
อัปเดตครั้งล่าสุด | 2017-08-30 |
วันที่เผยแพร่ | 2017-08-30 |
คะแนน | 4.14/5 รวมทั้งหมด 21 คะแนน |
ผู้พัฒนา | Kenaniah Cerny |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/kenaniah/chrome-next-page-plugin |
URL หน้าช่วยเหลือ | https://github.com/kenaniah/chrome-next-page-plugin |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Navigation Shortcuts", "version": "2017.8.30", "manifest_version": 2, "description": "Allows next, up, prev, and top links to be used with simple keyboard shortcuts.", "permissions": [ "history" ], "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "content_script.js" ], "run_at": "document_end", "all_frames": false } ], "browser_action": { "default_popup": "popup.html" } } |