Tab Countdown Timer
A Chromium Extension that allows you to set a timer that counts down and then closes the tab.
Что такое Tab Countdown Timer?
Tab Countdown Timer - это расширение Chrome, разработанное lokico, и его основная функция - "A Chromium Extension that allows you to set a timer that counts down and then closes the tab.".
Снимки экрана расширения
Скачать файл CRX расширения Tab Countdown Timer
Скачайте файлы расширений Tab Countdown Timer в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Allows you to quickly set a countdown timer on a tab. Once the timer expires, the tab closes. Every tab can have a different timer. Enter time by typing or by using a mousewheel. --- Changes for v1.1 - Add dark mode based on current system settings - Save last alarm values as default for next time - Update to chrome manifest v3
Основная информация о расширении
Название | Tab Countdown Timer |
ID | maoljenpfpdblggdbnhmegofbhhcdgle |
Официальный URL | https://chromewebstore.google.com/detail/tab-countdown-timer/maoljenpfpdblggdbnhmegofbhhcdgle |
Описание | A Chromium Extension that allows you to set a timer that counts down and then closes the tab. |
Размер файла | 101 KB |
Количество установок | 6,368 |
Текущая Версия | 1.1 |
Последнее Обновление | 2022-11-12 |
Дата публикации | 2020-08-06 |
Рейтинг | 4.29/5 Всего 14 оценок |
Разработчик | lokico |
Электронная почта | [email protected] |
Тип оплаты | free |
Поддерживаемые языки | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Tab Countdown Timer", "version": "1.1", "manifest_version": 3, "description": "A Chromium Extension that allows you to set a timer that counts down and then closes the tab.", "icons": { "16": "icons\/hourglass16.png", "32": "icons\/hourglass32.png", "48": "icons\/hourglass48.png", "128": "icons\/hourglass128.png" }, "action": { "default_popup": "popup\/popup.html" }, "background": { "service_worker": "background\/background.js" }, "permissions": [ "alarms", "storage" ], "content_security_policy": { "extension_pages": "script-src 'self'; object-src 'self'" } } |