Keyboard Shortcuts to Close Other/Right Tabs
Chrome extension adding shortcuts for closing and pinning tabs.
O que é Keyboard Shortcuts to Close Other/Right Tabs?
Keyboard Shortcuts to Close Other/Right Tabs é uma extensão do Chrome desenvolvida por Michael Fester, e sua principal característica é "Chrome extension adding shortcuts for closing and pinning tabs.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Keyboard Shortcuts to Close Other/Right Tabs
Baixe arquivos de extensão Keyboard Shortcuts to Close Other/Right Tabs 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
The extension consists of three keyboard shortcuts: * Alt-Shift-O: Close Other Tabs * Alt-Shift-R: Close Tabs to the Right * Alt-Shift-P: Pin Tab Note: A separate extension, tabloid, adds the following shortcuts to Chrome * Move Tab Right * Move Tab Left * Move Tab to First Position * Move Tab to Last Position Chrome extensions currently only allow for a maximum of four shortcuts, which is why they are not included in tabasco. You can fetch tabloid here: https://chrome.google.com/webstore/detail/femidpfpildjfepkcaodpalpakgadjih
Informações Básicas da Extensão
Nome | Keyboard Shortcuts to Close Other/Right Tabs |
ID | dkoadhojigekhckndaehenfbhcgfeepl |
URL Oficial | https://chromewebstore.google.com/detail/keyboard-shortcuts-to-clo/dkoadhojigekhckndaehenfbhcgfeepl |
Descrição | Chrome extension adding shortcuts for closing and pinning tabs. |
Tamanho do Arquivo | 4.03 KB |
Contagem de Instalações | 20,000 |
Versão Atual | 1.0.1 |
Última Atualização | 2023-10-28 |
Data de Publicação | 2013-01-23 |
Classificação | 4.33/5 Total de 72 Avaliações |
Desenvolvedor | Michael Fester |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://michaelfester.com |
Idiomas Suportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Keyboard Shortcuts to Close Other\/Right Tabs", "version": "1.0.1", "manifest_version": 3, "description": "Chrome extension adding shortcuts for closing and pinning tabs.", "background": { "service_worker": "background.js" }, "permissions": [ "tabs", "activeTab", "tabGroups" ], "commands": { "close-other-tabs": { "suggested_key": { "default": "Alt+Shift+O" }, "description": "Close other Tabs" }, "close-right-tabs": { "suggested_key": { "default": "Alt+Shift+R" }, "description": "Close Tabs to the right" }, "toggle-pin": { "suggested_key": { "default": "Alt+Shift+P" }, "description": "Pin\/unpin Tab" } } } |