Switch tabs shortcuts
Adds custom shortcuts for switching tabs.
O que é Switch tabs shortcuts?
Switch tabs shortcuts é uma extensão do Chrome desenvolvida por Yutaro Yoshii, e sua principal característica é "Adds custom shortcuts for switching tabs.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Switch tabs shortcuts
Baixe arquivos de extensão Switch tabs shortcuts 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
This extension adds custom shortcuts for switching tabs. After installing, you will be able to customize your shortcuts through chrome://extensions/shortcuts The default key bindings are as follows: Jump to the previous open tab mac: "Command+Shift+Left" other platforms: "Ctrl+Shift+Left" Jump to the next open tab mac: "Command+Shift+Right" other platforms: "Ctrl+Shift+Right" Jump to the last open tab mac: "Command+Shift+Up" other platforms: "Ctrl+Shift+Up" Jump to the first open tab mac: "Command+Shift+Down" other platforms: "Ctrl+Shift+Down"
Informações Básicas da Extensão
Nome | Switch tabs shortcuts |
ID | fejclhnofpjonlkijaekjpoehpinhlab |
URL Oficial | https://chromewebstore.google.com/detail/switch-tabs-shortcuts/fejclhnofpjonlkijaekjpoehpinhlab |
Descrição | Adds custom shortcuts for switching tabs. |
Tamanho do Arquivo | 8.29 KB |
Contagem de Instalações | 255 |
Versão Atual | 1.0 |
Última Atualização | 2023-10-09 |
Data de Publicação | 2020-03-03 |
Classificação | 5.00/5 Total de 3 Avaliações |
Desenvolvedor | Yutaro Yoshii |
[email protected] | |
Tipo de Pagamento | free |
URL da Página de Política de Privacidade | https://developer.chrome.com/docs/webstore/program-policies/privacy |
Idiomas Suportados | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Switch tabs shortcuts", "short_name": "Switch tabs", "version": "1.0", "description": "Adds custom shortcuts for switching tabs.", "author": "Yutaro Yoshii", "manifest_version": 2, "icons": { "16": "images\/icon_16.png", "48": "images\/icon_48.png", "128": "images\/icon_128.png" }, "background": { "scripts": [ "background.js" ], "persistent": false }, "permissions": [ "tabs" ], "commands": { "tab_left": { "suggested_key": { "default": "Ctrl+Shift+Left", "mac": "Command+Shift+Left" }, "description": "Jump to the previous open tab" }, "tab_right": { "suggested_key": { "default": "Ctrl+Shift+Right", "mac": "Command+Shift+Right" }, "description": "Jump to the next open tab" }, "tab_first": { "suggested_key": { "default": "Ctrl+Shift+Up", "mac": "Command+Shift+Up" }, "description": "Jump to the last open tab" }, "tab_last": { "suggested_key": { "default": "Ctrl+Shift+Down", "mac": "Command+Shift+Down" }, "description": "Jump to the first open tab" } } } |