New Tab Shortcut
Customize chrome shortcut to open a new tab
O que é New Tab Shortcut?
New Tab Shortcut é uma extensão do Chrome desenvolvida por Stanley Guevara, e sua principal característica é "Customize chrome shortcut to open a new tab".
Baixar o arquivo CRX da Extensão New Tab Shortcut
Baixe arquivos de extensão New Tab Shortcut 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 for opening new tab by keyboard shortcut. Just go to chrome://extensions scroll down to "Keyboard shortcuts" and set desired keys.
Informações Básicas da Extensão
Nome | |
ID | ahnndmdalhingohpcbkfpipelneigkij |
URL Oficial | https://chromewebstore.google.com/detail/new-tab-shortcut/ahnndmdalhingohpcbkfpipelneigkij |
Descrição | Customize chrome shortcut to open a new tab |
Tamanho do Arquivo | 3.16 KB |
Contagem de Instalações | 36 |
Versão Atual | 1.0 |
Última Atualização | 2016-10-16 |
Data de Publicação | 2016-10-16 |
Desenvolvedor | Stanley Guevara |
Tipo de Pagamento | free |
Site da Extensão | https://github.com/stanleyguevara/chrome-new-tab-shortcut |
URL da Página de Ajuda | https://github.com/stanleyguevara/chrome-new-tab-shortcut |
Idiomas Suportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "New Tab Shortcut", "permissions": [ "tabs" ], "version": "1.0", "description": "Customize chrome shortcut to open a new tab", "commands": { "close-tab": { "suggested_key": { "default": "Alt+Z", "mac": "Ctrl+Z" }, "description": "Open a new tab" } }, "background": { "scripts": [ "main.js" ], "persistent": false } } |