Tab Keys
Allows you to set keyboard shortcuts for certain tab actions such as selecting the next/prev tab.
O que é Tab Keys?
Tab Keys é uma extensão do Chrome desenvolvida por thekiteeatingtree, e sua principal característica é "Allows you to set keyboard shortcuts for certain tab actions such as selecting the next/prev tab.".
Baixar o arquivo CRX da Extensão Tab Keys
Baixe arquivos de extensão Tab Keys no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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.
Informações Básicas da Extensão
Nome | ![]() |
ID | fmmkbjckdjobofhoikpldcahemfccffo |
URL Oficial | https://chrome.google.com/webstore/detail/tab-keys/fmmkbjckdjobofhoikpldcahemfccffo |
Descrição | Allows you to set keyboard shortcuts for certain tab actions such as selecting the next/prev tab. |
Tamanho do Arquivo | 4.5 KB |
Contagem de Instalações | 21 |
Versão Atual | 1.0 |
Última Atualização | 2017-07-27 |
Data de Publicação | 2017-07-27 |
Desenvolvedor | thekiteeatingtree |
Tipo de Pagamento | free |
Site da Extensão | https://github.com/TheKiteEatingTree/TabKeys |
URL da Página de Ajuda | https://github.com/TheKiteEatingTree/TabKeys/issues |
Idiomas Suportados | 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" } } } |