Tab grouper
A tab grouping extension by Explosion-Scratch. This extension is open source here:…
O que é Tab grouper?
Tab grouper é uma extensão do Chrome desenvolvida por Explosion-Scratch, e sua principal característica é "A tab grouping extension by Explosion-Scratch. This extension is open source here:…".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Tab grouper
Baixe arquivos de extensão Tab grouper 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 tab grouping extension by Explosion-Scratch. This extension is open source here: https://github.com/Explosion-Scratch/tab_grouping This extension allows automatically grouping tabs, manually grouping tabs, ungrouping them, naming the groups automatically and so much more!
Informações Básicas da Extensão
Nome | Tab grouper |
ID | ebaakekgcpaojdlfcfmlaelgaacmdeje |
URL Oficial | https://chromewebstore.google.com/detail/tab-grouper/ebaakekgcpaojdlfcfmlaelgaacmdeje |
Descrição | A tab grouping extension by Explosion-Scratch. This extension is open source here:… |
Tamanho do Arquivo | 31.63 KB |
Contagem de Instalações | 93 |
Versão Atual | 1.0.0 |
Última Atualização | 2021-12-05 |
Data de Publicação | 2021-12-03 |
Classificação | 5.00/5 Total de 2 Avaliações |
Desenvolvedor | Explosion-Scratch |
[email protected] | |
Tipo de Pagamento | free |
Idiomas Suportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Tab grouper", "version": "1.0.0", "background": { "service_worker": "background.js" }, "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png", "256": "icon256.png" }, "permissions": [ "tabs", "tabGroups", "storage" ], "manifest_version": 3, "action": { "default_popup": "popup.html" }, "options_ui": { "page": "settings.html", "open_in_tab": true }, "commands": { "group": { "suggested_key": { "default": "Ctrl+G" }, "description": "Group tabs in the current window by domain" }, "collapse": { "suggested_key": { "default": "Ctrl+Shift+G" }, "description": "Collapse non focused tab groups in the current window" }, "ungroup": { "description": "Ungroup all tabs in the current window" } } } |