Tab Cycler
Simple extension that allows you to customize the key-shortcuts for cycling left and right between tabs. Defaults: Alt-Shift-Left…
O que é Tab Cycler?
Tab Cycler é uma extensão do Chrome desenvolvida por benl, e sua principal característica é "Simple extension that allows you to customize the key-shortcuts for cycling left and right between tabs. Defaults: Alt-Shift-Left…".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Tab Cycler
Baixe arquivos de extensão Tab Cycler 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 that allows you to customize the key-shortcuts for cycling left and right between tabs. Defaults: Alt-Shift-Left Arrow -> Cycle tab left. Alt-Shift-Right Arrow -> Cycle tab right. To customize shortcuts: Settings -> Extensions -> Keyboard shortcuts (bottom of page) Code hosted at: https://github.com/benletchford/chrome-tab-cycler
Informações Básicas da Extensão
Nome | Tab Cycler |
ID | bognkjnmfbfjobpbmbnnhhojmikehonf |
URL Oficial | https://chromewebstore.google.com/detail/tab-cycler/bognkjnmfbfjobpbmbnnhhojmikehonf |
Descrição | Simple extension that allows you to customize the key-shortcuts for cycling left and right between tabs. Defaults: Alt-Shift-Left… |
Tamanho do Arquivo | 5.02 KB |
Contagem de Instalações | 58 |
Versão Atual | 0.2 |
Última Atualização | 2016-08-01 |
Data de Publicação | 2016-07-31 |
Classificação | 5.00/5 Total de 2 Avaliações |
Desenvolvedor | benl |
Tipo de Pagamento | free |
Idiomas Suportados | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Tab Cycler", "version": "0.2", "icons": { "128": "icon.png" }, "permissions": [ "tabs", "activeTab" ], "background": { "scripts": [ "background.js" ] }, "commands": { "left": { "suggested_key": { "default": "Alt+Shift+Left" }, "description": "Cycle to left tab." }, "right": { "suggested_key": { "default": "Alt+Shift+Right" }, "description": "Cycle to right tab." } } } |