Tab Manager Shortcuts
Manage your chrome tabs with keyboard shortcuts.
O que é Tab Manager Shortcuts?
Tab Manager Shortcuts é uma extensão do Chrome desenvolvida por Daniel Pham, e sua principal característica é "Manage your chrome tabs with keyboard shortcuts.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Tab Manager Shortcuts
Baixe arquivos de extensão Tab Manager 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
Reorder and manage the chrome tabs with customizable keyboard shortcuts As of v2.0 keybindings must be set through the "Keyboard Shortcut" menu at the bottom right in the Chrome extension settings as defaults are not longer set (see https://bugs.chromium.org/p/chromium/issues/detail?id=167419). Source Code: https://github.com/danhp/tab-manager-chrome
Informações Básicas da Extensão
Nome | Tab Manager Shortcuts |
ID | oofoadncochbkbpebpbndghocapamchi |
URL Oficial | https://chromewebstore.google.com/detail/tab-manager-shortcuts/oofoadncochbkbpebpbndghocapamchi |
Descrição | Manage your chrome tabs with keyboard shortcuts. |
Tamanho do Arquivo | 21.21 KB |
Contagem de Instalações | 314 |
Versão Atual | 2.0.0 |
Última Atualização | 2016-12-27 |
Data de Publicação | 2016-12-27 |
Classificação | 3.36/5 Total de 11 Avaliações |
Desenvolvedor | Daniel Pham |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://github.com/danhp/tab-manager-chrome |
Idiomas Suportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Tab Manager Shortcuts", "version": "2.0.0", "description": "Manage your chrome tabs with keyboard shortcuts.", "homepage_url": "https:\/\/phamdaniel.github.io", "icons": { "16": "imgs\/16.png", "48": "imgs\/48.png", "128": "imgs\/128.png" }, "background": { "persisten": false, "scripts": [ "background.js" ] }, "commands": { "tab_manager_pin_current": { "description": "Pin or unpin current tab." }, "tab_manager_unpin_all": { "description": "Unpin all tabs in current window" }, "tab_manager_move_left": { "description": "Move selected tab left" }, "tab_manager_move_right": { "description": "Move selected tab right" }, "tab_manager_browse_left": { "description": "Switch\/browse tab left" }, "tab_manager_browse_right": { "description": "Switch\/browse tab right" } } } |