Tab Countdown Timer
A Chromium Extension that allows you to set a timer that counts down and then closes the tab.
Was ist Tab Countdown Timer?
Tab Countdown Timer ist eine Chrome-Erweiterung, die von lokico entwickelt wurde, und ihr Hauptmerkmal ist "A Chromium Extension that allows you to set a timer that counts down and then closes the tab.".
Erweiterungsscreenshots
Tab Countdown Timer-Erweiterungs-CRX-Datei herunterladen
Laden Sie Tab Countdown Timer-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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 Grundlegende Informationen zur Erweiterung
| Name | |
| ID | maoljenpfpdblggdbnhmegofbhhcdgle |
| Offizielle URL | https://chromewebstore.google.com/detail/tab-countdown-timer/maoljenpfpdblggdbnhmegofbhhcdgle |
| Beschreibung | A Chromium Extension that allows you to set a timer that counts down and then closes the tab. |
| Dateigröße | 101 KB |
| Installationsanzahl | 6,368 |
| Aktuelle Version | 1.1 |
| Letztes Update | 2022-11-12 |
| Veröffentlichungsdatum | 2020-08-06 |
| Bewertung | 4.29/5 Insgesamt 14 Bewertungen |
| Entwickler | lokico |
| [email protected] | |
| Zahlungsart | free |
| Unterstützte Sprachen | 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'"
}
} | |