Switch Tab Shortcut
Customize chrome shortcut to switch tabs
O que é Switch Tab Shortcut?
Switch Tab Shortcut é uma extensão do Chrome desenvolvida por Stanley Guevara, e sua principal característica é "Customize chrome shortcut to switch tabs".
Baixar o arquivo CRX da Extensão Switch Tab Shortcut
Baixe arquivos de extensão Switch Tab Shortcut 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
Simple extension for switching to next/previous tab. Just go to chrome://extensions scroll down to "Keyboard shortcuts" and set desired keys.
Informações Básicas da Extensão
Nome | Switch Tab Shortcut |
ID | pfeobfgjcmcpgkodpodibnggeanmoddk |
URL Oficial | https://chromewebstore.google.com/detail/switch-tab-shortcut/pfeobfgjcmcpgkodpodibnggeanmoddk |
Descrição | Customize chrome shortcut to switch tabs |
Tamanho do Arquivo | 3.37 KB |
Contagem de Instalações | 27 |
Versão Atual | 1.0 |
Última Atualização | 2016-10-16 |
Data de Publicação | 2016-10-16 |
Classificação | 5.00/5 Total de 2 Avaliações |
Desenvolvedor | Stanley Guevara |
Tipo de Pagamento | free |
Site da Extensão | https://github.com/stanleyguevara/chrome-switch-tab-shortcut |
URL da Página de Ajuda | https://github.com/stanleyguevara/chrome-switch-tab-shortcut |
Idiomas Suportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Switch Tab Shortcut", "permissions": [ "tabs" ], "version": "1.0", "description": "Customize chrome shortcut to switch tabs", "commands": { "next-tab": { "suggested_key": { "default": "Ctrl+Right", "mac": "Command+Right" }, "description": "Next tab" }, "prev-tab": { "suggested_key": { "default": "Ctrl+Left", "mac": "Command+Left" }, "description": "Prev tab" } }, "background": { "scripts": [ "main.js" ], "persistent": false } } |