Tab Countdown Timer

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

Vad är Tab Countdown Timer?

Tab Countdown Timer är en Chrome-tillägg utvecklad av lokico, och dess huvudfunktion är "A Chromium Extension that allows you to set a timer that counts down and then closes the tab.".

Tilläggsskärmbilder

screenshot
screenshot

Ladda ner Tab Countdown Timer-förlängningens CRX-fil

Ladda ner Tab Countdown Timer-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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                    

Grundläggande Information om Tillägg

Namn Tab Countdown Timer Tab Countdown Timer
ID maoljenpfpdblggdbnhmegofbhhcdgle
Officiell webbadress https://chromewebstore.google.com/detail/tab-countdown-timer/maoljenpfpdblggdbnhmegofbhhcdgle
Beskrivning A Chromium Extension that allows you to set a timer that counts down and then closes the tab.
Filstorlek 101 KB
Antal Installationer 6,368
Aktuell Version 1.1
Senast Uppdaterad 2022-11-12
Publiceringsdatum 2020-08-06
Betyg 4.29/5 Totalt 14 Betyg
Utvecklare lokico
E-post [email protected]
Betalningssätt free
Stödda Språk 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'"
    }
}