Previous and Next page keyboard navigation
Allows you to navigate any paged website using the left and right keyboard keys.
Was ist Previous and Next page keyboard navigation?
Previous and Next page keyboard navigation ist eine Chrome-Erweiterung, die von manticorp1234 entwickelt wurde, und ihr Hauptmerkmal ist "Allows you to navigate any paged website using the left and right keyboard keys.".
Erweiterungsscreenshots
Previous and Next page keyboard navigation-Erweiterungs-CRX-Datei herunterladen
Laden Sie Previous and Next page keyboard navigation-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.
Grundlegende Informationen zur Erweiterung
Name | Previous and Next page keyboard navigation |
ID | bgddcngmfadknajipncoemekkikibfhg |
Offizielle URL | https://chromewebstore.google.com/detail/previous-and-next-page-ke/bgddcngmfadknajipncoemekkikibfhg |
Beschreibung | Allows you to navigate any paged website using the left and right keyboard keys. |
Dateigröße | 44.05 KB |
Installationsanzahl | 696 |
Aktuelle Version | 0.43 |
Letztes Update | 2016-04-10 |
Veröffentlichungsdatum | 2016-04-10 |
Bewertung | 4.12/5 Insgesamt 25 Bewertungen |
Entwickler | manticorp1234 |
Zahlungsart | free |
Erweiterungswebsite | https://github.com/manticorp/Chrome-Keyboard-Navigation |
Hilfeseite URL | https://github.com/manticorp/Chrome-Keyboard-Navigation |
Unterstützte Sprachen | 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" } |