Tab Keys
Allows you to set keyboard shortcuts for certain tab actions such as selecting the next/prev tab.
Cos'è Tab Keys?
Tab Keys è un'estensione di Chrome sviluppata da thekiteeatingtree, e la sua funzione principale è "Allows you to set keyboard shortcuts for certain tab actions such as selecting the next/prev tab.".
Scarica il file CRX dell'estensione Tab Keys
Scarica i file di estensione Tab Keys 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
Allows you to set keyboard shortcuts for selecting the next or previous tab. Also offers the ability to add a shortcut to pin tabs. The default shortcuts for next/prev tab are Ctrl+Right/Left. To edit the shortcuts click on the extension icon and hit 'Manage extensions'. Scroll to the bottom of the page and click 'Keyboard shortcuts'. This extensions shortcuts will be editable under the 'Tab Keys' header.
Informazioni di Base sull'Estensione
Nome | ![]() |
ID | fmmkbjckdjobofhoikpldcahemfccffo |
URL Ufficiale | https://chrome.google.com/webstore/detail/tab-keys/fmmkbjckdjobofhoikpldcahemfccffo |
Descrizione | Allows you to set keyboard shortcuts for certain tab actions such as selecting the next/prev tab. |
Dimensione del File | 4.5 KB |
Conteggio Installazioni | 21 |
Versione Corrente | 1.0 |
Ultimo Aggiornamento | 2017-07-27 |
Data di Pubblicazione | 2017-07-27 |
Sviluppatore | thekiteeatingtree |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/TheKiteEatingTree/TabKeys |
URL della Pagina di Aiuto | https://github.com/TheKiteEatingTree/TabKeys/issues |
Lingue Supportate | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Tab Keys", "description": "Allows you to set keyboard shortcuts for certain tab actions such as selecting the next\/prev tab.", "version": "1.0", "manifest_version": 2, "background": { "scripts": [ "background.js" ], "persistent": false }, "commands": { "next-tab": { "suggested_key": { "default": "Ctrl+Right" }, "description": "Select the next tab" }, "prev-tab": { "suggested_key": { "default": "Ctrl+Left" }, "description": "Select the previous tab" }, "pin-tab": { "suggested_key": { "default": "Ctrl+Shift+P" }, "description": "Pin the current tab" } } } |