Previous and Next page keyboard navigation
Allows you to navigate any paged website using the left and right keyboard keys.
What is Previous and Next page keyboard navigation?
Previous and Next page keyboard navigation is a Chrome extension developed by manticorp1234, and its main feature is "Allows you to navigate any paged website using the left and right keyboard keys.".
Extension Screenshots
Download Previous and Next page keyboard navigation Extension CRX File
Download Previous and Next page keyboard navigation extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | Previous and Next page keyboard navigation |
ID | bgddcngmfadknajipncoemekkikibfhg |
Official URL | https://chromewebstore.google.com/detail/previous-and-next-page-ke/bgddcngmfadknajipncoemekkikibfhg |
Description | Allows you to navigate any paged website using the left and right keyboard keys. |
File Size | 44.05 KB |
Installation Count | 696 |
Current Version | 0.43 |
Last Updated | 2016-04-10 |
Publish Date | 2016-04-10 |
Rating | 4.12/5 Total 25 Ratings |
Developer | manticorp1234 |
Payment Type | free |
Extension Website | https://github.com/manticorp/Chrome-Keyboard-Navigation |
Help Page URL | https://github.com/manticorp/Chrome-Keyboard-Navigation |
Supported Languages | 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" } |