Tab Countdown Timer
A Chromium Extension that allows you to set a timer that counts down and then closes the tab.
Τι είναι το Tab Countdown Timer;
Το Tab Countdown Timer είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον lokico, και η κύρια λειτουργία του είναι "A Chromium Extension that allows you to set a timer that counts down and then closes the tab.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Tab Countdown Timer
Λήψη αρχείων επέκτασης Tab Countdown Timer σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
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
Βασικές Πληροφορίες Επέκτασης
Όνομα | Tab Countdown Timer |
ID | maoljenpfpdblggdbnhmegofbhhcdgle |
Επίσημο URL | https://chromewebstore.google.com/detail/tab-countdown-timer/maoljenpfpdblggdbnhmegofbhhcdgle |
Περιγραφή | A Chromium Extension that allows you to set a timer that counts down and then closes the tab. |
Μέγεθος Αρχείου | 101 KB |
Αριθμός Εγκαταστάσεων | 6,368 |
Τρέχουσα Έκδοση | 1.1 |
Τελευταία Ενημέρωση | 2022-11-12 |
Ημερομηνία Δημοσίευσης | 2020-08-06 |
Αξιολόγηση | 4.29/5 Συνολικά 14 Αξιολογήσεις |
Προγραμματιστής | lokico |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Υποστηριζόμενες Γλώσσες | 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'" } } |