Navigation Shortcuts
Allows next, up, prev, and top links to be used with simple keyboard shortcuts.
Navigation Shortcuts क्या है?
Navigation Shortcuts Kenaniah Cerny द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Allows next, up, prev, and top links to be used with simple keyboard shortcuts."।
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Navigation Shortcuts एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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" } } |