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.
Co to jest Close App-launcher Tabs?
Close App-launcher Tabs to rozszerzenie Chrome opracowane przez christopher.x.gerber, a jego główną funkcją jest „Close those pesky tabs after they launch apps. Specify urls to match against, and how quickly to close those tabs after they launch.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Close App-launcher Tabs
Pobierz pliki rozszerzeń Close App-launcher Tabs w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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
Podstawowe informacje o rozszerzeniu
Nazwa | Close App-launcher Tabs |
ID | nflgfijhhdgfaihflbieofaegdiphbej |
Oficjalny URL | https://chromewebstore.google.com/detail/close-app-launcher-tabs/nflgfijhhdgfaihflbieofaegdiphbej |
Opis | Close those pesky tabs after they launch apps. Specify urls to match against, and how quickly to close those tabs after they launch. |
Rozmiar pliku | 10.69 KB |
Liczba instalacji | 44 |
Aktualna Wersja | 1.0.1 |
Ostatnia Aktualizacja | 2023-04-04 |
Data Publikacji | 2022-03-21 |
Ocena | 5.00/5 Łącznie 1 Oceny |
Deweloper | christopher.x.gerber |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | https://github.com/gerbus/close-app-launcher-tabs |
Adres URL Strony Pomocy | https://github.com/gerbus/close-app-launcher-tabs/issues |
Obsługiwane Języki | 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" } } |