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.
Что такое Close App-launcher Tabs?
Close App-launcher Tabs - это расширение Chrome, разработанное christopher.x.gerber, и его основная функция - "Close those pesky tabs after they launch apps. Specify urls to match against, and how quickly to close those tabs after they launch.".
Снимки экрана расширения
Скачать файл CRX расширения Close App-launcher Tabs
Скачайте файлы расширений Close App-launcher Tabs в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
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
Основная информация о расширении
Название | Close App-launcher Tabs |
ID | nflgfijhhdgfaihflbieofaegdiphbej |
Официальный URL | https://chromewebstore.google.com/detail/close-app-launcher-tabs/nflgfijhhdgfaihflbieofaegdiphbej |
Описание | Close those pesky tabs after they launch apps. Specify urls to match against, and how quickly to close those tabs after they launch. |
Размер файла | 10.69 KB |
Количество установок | 44 |
Текущая Версия | 1.0.1 |
Последнее Обновление | 2023-04-04 |
Дата публикации | 2022-03-21 |
Рейтинг | 5.00/5 Всего 1 оценок |
Разработчик | christopher.x.gerber |
Электронная почта | [email protected] |
Тип оплаты | free |
Официальный сайт расширения | https://github.com/gerbus/close-app-launcher-tabs |
URL страницы помощи | https://github.com/gerbus/close-app-launcher-tabs/issues |
Поддерживаемые языки | 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" } } |