New Tab in Group
Opens a new tab in the current group via keyboard shortcut
O que é New Tab in Group?
New Tab in Group é uma extensão do Chrome desenvolvida por Toby Wolff-Maritz, e sua principal característica é "Opens a new tab in the current group via keyboard shortcut".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão New Tab in Group
Baixe arquivos de extensão New Tab in Group 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
A simple extension that opens a new tab in the current tab group using a shortcut. Windows: Ctrl+Shift+Y Mac: Command+Shift+Y Chrome OS: Ctrl+Shift+U Linux: Ctrl+Shift+J
Informações Básicas da Extensão
Nome | |
ID | cgcjmikekhoocfjbihnklkpfapmgjboi |
URL Oficial | https://chromewebstore.google.com/detail/new-tab-in-group/cgcjmikekhoocfjbihnklkpfapmgjboi |
Descrição | Opens a new tab in the current group via keyboard shortcut |
Tamanho do Arquivo | 9.3 KB |
Contagem de Instalações | 63 |
Versão Atual | 0.0.1 |
Última Atualização | 2022-07-25 |
Data de Publicação | 2022-07-23 |
Classificação | 5.00/5 Total de 2 Avaliações |
Desenvolvedor | Toby Wolff-Maritz |
[email protected] | |
Tipo de Pagamento | free |
URL da Página de Ajuda | https://github.com/tmaritz/chrome-extension-new-tab-in-group |
Idiomas Suportados | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "New Tab in Group", "version": "0.0.1", "description": "Opens a new tab in the current group via keyboard shortcut", "manifest_version": 3, "background": { "service_worker": "background.js" }, "action": [], "commands": { "_execute_action": { "suggested_key": { "windows": "Ctrl+Shift+Y", "mac": "Command+Shift+Y", "chromeos": "Ctrl+Shift+U", "linux": "Ctrl+Shift+J" } } }, "icons": { "16": "assets\/layer-plus16.png", "32": "assets\/layer-plus32.png", "64": "assets\/layer-plus64.png", "128": "assets\/layer-plus128.png" } } |