Tab Countdown Timer

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

Apa itu Tab Countdown Timer?

Tab Countdown Timer adalah ekstensi Chrome yang dikembangkan oleh lokico, dan fitur utamanya adalah "A Chromium Extension that allows you to set a timer that counts down and then closes the tab.".

Screenshot Ekstensi

screenshot
screenshot

Unduh Berkas CRX Ekstensi Tab Countdown Timer

Unduh file ekstensi Tab Countdown Timer dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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                    

Informasi Dasar Ekstensi

Nama Tab Countdown Timer Tab Countdown Timer
ID maoljenpfpdblggdbnhmegofbhhcdgle
URL Resmi https://chromewebstore.google.com/detail/tab-countdown-timer/maoljenpfpdblggdbnhmegofbhhcdgle
Deskripsi A Chromium Extension that allows you to set a timer that counts down and then closes the tab.
Ukuran File 101 KB
Jumlah Instalasi 6,368
Versi Saat Ini 1.1
Terakhir Diperbarui 2022-11-12
Tanggal Publikasi 2020-08-06
Penilaian 4.29/5 Total 14 Penilaian
Pengembang lokico
Email [email protected]
Tipe Pembayaran free
Bahasa yang Didukung 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'"
    }
}