Previous and Next page keyboard navigation
Allows you to navigate any paged website using the left and right keyboard keys.
Previous and Next page keyboard navigation क्या है?
Previous and Next page keyboard navigation manticorp1234 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Allows you to navigate any paged website using the left and right keyboard keys."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Previous and Next page keyboard navigation एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
This extensions basically allows you to navigate any paginated website just using the left and right keys. Very simple app, to turn off just click the icon in the top right. Open source, code hosted here: https://github.com/manticorp/Chrome-Keyboard-Navigation If you have any suggestions, bugs or you know of sites that don't work, then file a bug report on the github page or contact me through there.
एक्सटेंशन की मूल जानकारी
नाम | Previous and Next page keyboard navigation |
ID | bgddcngmfadknajipncoemekkikibfhg |
आधिकारिक URL | https://chromewebstore.google.com/detail/previous-and-next-page-ke/bgddcngmfadknajipncoemekkikibfhg |
विवरण | Allows you to navigate any paged website using the left and right keyboard keys. |
फ़ाइल का आकार | 44.05 KB |
स्थापना संख्या | 696 |
वर्तमान संस्करण | 0.43 |
अंतिम अपडेट | 2016-04-10 |
प्रकाशन तिथि | 2016-04-10 |
रेटिंग | 4.12/5 कुल 25 रेटिंग्स |
डेवलपर | manticorp1234 |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://github.com/manticorp/Chrome-Keyboard-Navigation |
सहायता पृष्ठ URL | https://github.com/manticorp/Chrome-Keyboard-Navigation |
समर्थित भाषाएँ | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Previous and Next page keyboard navigation", "short_name": "Prev\/Next Keys", "description": "Allows you to navigate any paged website using the left and right keyboard keys.", "author": "Harry Mustoe-Playfair", "version": "0.43", "browser_action": { "default_icon": "icon.png", "default_title": "Toggle Keyboard Navigation" }, "permissions": [ "storage" ], "background": { "page": "background.html" }, "icons": { "16": "images\/icon16.png", "48": "images\/icon48.png", "128": "images\/icon128.png" }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "jquery.js", "content_script.js" ], "run_at": "document_idle" } ], "options_page": "options.html" } |