Close App-launcher Tabs
Close those pesky tabs after they launch apps. Specify urls to match against, and how quickly to close those tabs after they launch.
O que é Close App-launcher Tabs?
Close App-launcher Tabs é uma extensão do Chrome desenvolvida por christopher.x.gerber, e sua principal característica é "Close those pesky tabs after they launch apps. Specify urls to match against, and how quickly to close those tabs after they launch.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Close App-launcher Tabs
Baixe arquivos de extensão Close App-launcher Tabs 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
When a new tab opens, this extension compares that tab's URL to your custom list of URLs or URL parts. If there's a match, this extension will automatically close that tab after a small custom delay (default: 5 seconds). Joining a lot of Zoom meetings from Google Calendar? Is Zoom leaving a lot of useless tabs open in Chrome? Linear? Other apps? Forget about it. Ease your cognitive load. Keep your Chrome space clean. Issues? Report them here: https://github.com/gerbus/close-app-launcher-tabs/issues Cheers! Christopher X Gerber
Informações Básicas da Extensão
Nome | Close App-launcher Tabs |
ID | nflgfijhhdgfaihflbieofaegdiphbej |
URL Oficial | https://chromewebstore.google.com/detail/close-app-launcher-tabs/nflgfijhhdgfaihflbieofaegdiphbej |
Descrição | Close those pesky tabs after they launch apps. Specify urls to match against, and how quickly to close those tabs after they launch. |
Tamanho do Arquivo | 10.69 KB |
Contagem de Instalações | 44 |
Versão Atual | 1.0.1 |
Última Atualização | 2023-04-04 |
Data de Publicação | 2022-03-21 |
Classificação | 5.00/5 Total de 1 Avaliações |
Desenvolvedor | christopher.x.gerber |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://github.com/gerbus/close-app-launcher-tabs |
URL da Página de Ajuda | https://github.com/gerbus/close-app-launcher-tabs/issues |
Idiomas Suportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Close App-launcher Tabs", "description": "Close those pesky tabs after they launch apps. Specify urls to match against, and how quickly to close those tabs after they launch.", "version": "1.0.1", "manifest_version": 3, "permissions": [ "tabs", "storage" ], "background": { "service_worker": "background.js" }, "action": { "default_popup": "popup.html", "default_icon": { "16": "close-app-launcher-tabs-16.png", "32": "close-app-launcher-tabs-32.png", "48": "close-app-launcher-tabs-48.png", "128": "close-app-launcher-tabs-128.png" } }, "icons": { "16": "close-app-launcher-tabs-16.png", "32": "close-app-launcher-tabs-32.png", "48": "close-app-launcher-tabs-48.png", "128": "close-app-launcher-tabs-128.png" } } |