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 lokico द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "A Chromium Extension that allows you to set a timer that counts down and then closes the tab."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Tab Countdown Timer एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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'" } } |