Previous and Next page keyboard navigation
Allows you to navigate any paged website using the left and right keyboard keys.
Cos'è Previous and Next page keyboard navigation?
Previous and Next page keyboard navigation è un'estensione di Chrome sviluppata da manticorp1234, e la sua funzione principale è "Allows you to navigate any paged website using the left and right keyboard keys.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Previous and Next page keyboard navigation
Scarica i file di estensione Previous and Next page keyboard navigation in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | Previous and Next page keyboard navigation |
ID | bgddcngmfadknajipncoemekkikibfhg |
URL Ufficiale | https://chromewebstore.google.com/detail/previous-and-next-page-ke/bgddcngmfadknajipncoemekkikibfhg |
Descrizione | Allows you to navigate any paged website using the left and right keyboard keys. |
Dimensione del File | 44.05 KB |
Conteggio Installazioni | 696 |
Versione Corrente | 0.43 |
Ultimo Aggiornamento | 2016-04-10 |
Data di Pubblicazione | 2016-04-10 |
Valutazione | 4.12/5 Totale 25 Valutazioni |
Sviluppatore | manticorp1234 |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/manticorp/Chrome-Keyboard-Navigation |
URL della Pagina di Aiuto | https://github.com/manticorp/Chrome-Keyboard-Navigation |
Lingue Supportate | 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" } |