Tab Countdown Timer
A Chromium Extension that allows you to set a timer that counts down and then closes the tab.
¿Qué es Tab Countdown Timer?
Tab Countdown Timer es una extensión de Chrome desarrollada por lokico, y su función principal es "A Chromium Extension that allows you to set a timer that counts down and then closes the tab.".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Tab Countdown Timer
Descarga archivos de extensión Tab Countdown Timer en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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
Información Básica de la Extensión
Nombre | Tab Countdown Timer |
ID | maoljenpfpdblggdbnhmegofbhhcdgle |
URL Oficial | https://chromewebstore.google.com/detail/tab-countdown-timer/maoljenpfpdblggdbnhmegofbhhcdgle |
Descripción | A Chromium Extension that allows you to set a timer that counts down and then closes the tab. |
Tamaño del Archivo | 101 KB |
Cantidad de Instalaciones | 6,368 |
Versión Actual | 1.1 |
Última Actualización | 2022-11-12 |
Fecha de Publicación | 2020-08-06 |
Calificación | 4.29/5 Total de 14 Calificaciones |
Desarrollador | lokico |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Idiomas Soportados | 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'" } } |