Previous and Next page keyboard navigation
Allows you to navigate any paged website using the left and right keyboard keys.
¿Qué es Previous and Next page keyboard navigation?
Previous and Next page keyboard navigation es una extensión de Chrome desarrollada por manticorp1234, y su función principal es "Allows you to navigate any paged website using the left and right keyboard keys.".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Previous and Next page keyboard navigation
Descarga archivos de extensión Previous and Next page keyboard navigation en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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.
Información Básica de la Extensión
Nombre | Previous and Next page keyboard navigation |
ID | bgddcngmfadknajipncoemekkikibfhg |
URL Oficial | https://chromewebstore.google.com/detail/previous-and-next-page-ke/bgddcngmfadknajipncoemekkikibfhg |
Descripción | Allows you to navigate any paged website using the left and right keyboard keys. |
Tamaño del Archivo | 44.05 KB |
Cantidad de Instalaciones | 696 |
Versión Actual | 0.43 |
Última Actualización | 2016-04-10 |
Fecha de Publicación | 2016-04-10 |
Calificación | 4.12/5 Total de 25 Calificaciones |
Desarrollador | manticorp1234 |
Tipo de Pago | free |
Sitio Web de la Extensión | https://github.com/manticorp/Chrome-Keyboard-Navigation |
URL de la Página de Ayuda | https://github.com/manticorp/Chrome-Keyboard-Navigation |
Idiomas Soportados | 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" } |