Goodnight Tabs
Close tabs that launch other apps
Что такое Goodnight Tabs?
Goodnight Tabs - это расширение Chrome, разработанное zachschnell, и его основная функция - "Close tabs that launch other apps".
Снимки экрана расширения
Скачать файл CRX расширения Goodnight Tabs
Скачайте файлы расширений Goodnight Tabs в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Some tabs overstay their welcome. If you're like me and use the desktop version of many apps, a full day of Zoom meetings or reviewing Notion docs or Slack archives could end with 15+ tabs that you no longer need. Once these tabs launch their respective desktop app, this extension takes care of cleaning up the tabs.
Основная информация о расширении
Название | Goodnight Tabs |
ID | paichadkkbhdmkngdmkgmefiabjjcaai |
Официальный URL | https://chromewebstore.google.com/detail/goodnight-tabs/paichadkkbhdmkngdmkgmefiabjjcaai |
Описание | Close tabs that launch other apps |
Размер файла | 30.65 KB |
Количество установок | 225 |
Текущая Версия | 0.6.1 |
Последнее Обновление | 2023-02-16 |
Дата публикации | 2023-01-24 |
Рейтинг | 5.00/5 Всего 2 оценок |
Разработчик | zachschnell |
Электронная почта | [email protected] |
Тип оплаты | free |
Официальный сайт расширения | https://github.com/zchr/zoomies |
URL страницы помощи | https://github.com/zchr/zoomies |
Поддерживаемые языки | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Goodnight Tabs", "description": "Close tabs that launch other apps", "version": "0.6.1", "action": { "default_popup": "index.html" }, "icons": { "32": "icons\/icon32.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "permissions": [ "scripting", "storage" ], "host_permissions": [ "https:\/\/*.around.co\/*", "https:\/\/*.asana.com\/*", "https:\/\/*.awsapps.com\/*", "https:\/\/*.figma.com\/*", "https:\/\/*.linear.app\/*", "https:\/\/*.miro.com\/*", "https:\/\/*.notion.so\/*", "https:\/\/*.slack.com\/*", "https:\/\/teams.live.com\/*", "https:\/\/*.zoom.us\/*" ], "background": { "service_worker": "background.js" } } |