Tab Countdown Timer

A Chromium Extension that allows you to set a timer that counts down and then closes the tab.

O que é Tab Countdown Timer?

Tab Countdown Timer é uma extensão do Chrome desenvolvida por lokico, e sua principal característica é "A Chromium Extension that allows you to set a timer that counts down and then closes the tab.".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Tab Countdown Timer

Baixe arquivos de extensão Tab Countdown Timer no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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                    

Informações Básicas da Extensão

Nome Tab Countdown Timer Tab Countdown Timer
ID maoljenpfpdblggdbnhmegofbhhcdgle
URL Oficial https://chromewebstore.google.com/detail/tab-countdown-timer/maoljenpfpdblggdbnhmegofbhhcdgle
Descrição A Chromium Extension that allows you to set a timer that counts down and then closes the tab.
Tamanho do Arquivo 101 KB
Contagem de Instalações 6,368
Versão Atual 1.1
Última Atualização 2022-11-12
Data de Publicação 2020-08-06
Classificação 4.29/5 Total de 14 Avaliações
Desenvolvedor lokico
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados 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'"
    }
}