Maximize Detached Tab
Maximizes tab that is dragged from a maximized window.
O que é Maximize Detached Tab?
Maximize Detached Tab é uma extensão do Chrome desenvolvida por tberghuis, e sua principal característica é "Maximizes tab that is dragged from a maximized window.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Maximize Detached Tab
Baixe arquivos de extensão Maximize Detached Tab 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
This extension restores the behaviour of automatically maximising detached tabs. (behaviour removed chrome version 100) Dragged tag to automatically maximise if detached from maximised window. Source code: https://github.com/tberghuis/maximize-detached-tab
Informações Básicas da Extensão
Nome | Maximize Detached Tab |
ID | fnljlhcgjoehmlmodjgejheenbacnjke |
URL Oficial | https://chromewebstore.google.com/detail/maximize-detached-tab/fnljlhcgjoehmlmodjgejheenbacnjke |
Descrição | Maximizes tab that is dragged from a maximized window. |
Tamanho do Arquivo | 9.49 KB |
Contagem de Instalações | 52 |
Versão Atual | 0.0.2 |
Última Atualização | 2022-05-05 |
Data de Publicação | 2022-05-04 |
Desenvolvedor | tberghuis |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://github.com/tberghuis/maximize-detached-tab/ |
URL da Página de Ajuda | https://github.com/tberghuis/maximize-detached-tab/issues |
Idiomas Suportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Maximize Detached Tab", "description": "Maximizes tab that is dragged from a maximized window.", "version": "0.0.2", "manifest_version": 3, "permissions": [ "storage" ], "background": { "service_worker": "background.js" }, "action": { "default_popup": "popup.html", "default_icon": { "16": "\/images\/16.png", "32": "\/images\/32.png", "48": "\/images\/48.png", "128": "\/images\/128.png" } }, "icons": { "16": "\/images\/16.png", "32": "\/images\/32.png", "48": "\/images\/48.png", "128": "\/images\/128.png" } } |