tabswitcher
TL;DR Remember Textmate's Command-T ? It's the same for chrome. Warning: shortcut has to be manually set in chrome's extension…
O que é tabswitcher?
tabswitcher é uma extensão do Chrome desenvolvida por https://jhchabran.com, e sua principal característica é "TL;DR Remember Textmate's Command-T ? It's the same for chrome. Warning: shortcut has to be manually set in chrome's extension…".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão tabswitcher
Baixe arquivos de extensão tabswitcher 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
TL;DR Remember Textmate's Command-T ? It's the same for chrome. Warning: shortcut has to be manually set in chrome's extension settings. Suggestion: use alt-space.
Informações Básicas da Extensão
Nome | |
ID | gkdkligmcadfbagoeggeohelmgalchcn |
URL Oficial | https://chromewebstore.google.com/detail/tabswitcher/gkdkligmcadfbagoeggeohelmgalchcn |
Descrição | TL;DR Remember Textmate's Command-T ? It's the same for chrome. Warning: shortcut has to be manually set in chrome's extension… |
Tamanho do Arquivo | 375 KB |
Contagem de Instalações | 22 |
Versão Atual | 1.0.2 |
Última Atualização | 2015-09-29 |
Data de Publicação | 2015-09-29 |
Classificação | 4.50/5 Total de 2 Avaliações |
Desenvolvedor | https://jhchabran.com |
Tipo de Pagamento | free |
Site da Extensão | http://jhchabran.com/blog/2011/12/17/build-a-chrome-extension-with-coffeescript/ |
URL da Página de Ajuda | https://github.com/jhchabran/tabswitcher |
Idiomas Suportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "tabswitcher", "version": "1.0.2", "browser_action": { "default_title": "Show the popup", "default_popup": "popup.html", "default_icon": { "19": "icon19.png", "38": "icon38.png" } }, "permissions": [ "tabs" ], "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "tabswitcher.js", "content.js" ], "run_at": "document_end" } ], "background": { "scripts": [ "tabswitcher.js", "background.js" ], "persistent": false }, "manifest_version": 2 } |