Timer 25: the Minimalist Timer
A minimalist 25 minutes timer. Simple, reliable and easy to use.
Timer 25: the Minimalist Timer क्या है?
Timer 25: the Minimalist Timer https://kyan001.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "A minimalist 25 minutes timer. Simple, reliable and easy to use."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Timer 25: the Minimalist Timer एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
> Focus on one dedicated function, and make it great. • 1 click to set a 25 Minute Timer. • Perfect for Pomodoro Technique / Tomato Timer. • Saving your time and lifting your efficiency now! • Nearly 0 Memory/CPU consumption with a better experience! • Open source software How To Use: • START from a fixed 25:00. • STOP at 0:00 and inform you by a popup alert/notification. • When counting down, click again to CANCEL the timer. Extra Functions: • Enter "timer" in Chrome's address bar and press TAB to start a non-25 minutes timer. • [Optional] Play a sound when time's up. • [Optional] Click is needed to dismiss the notification. Code & Bug Report: • Github Project Page: https://github.com/kyan001/WebExtensions/tree/master/ChromeExt_Timer25 • Help & Bug Report: https://github.com/kyan001/WebExtensions/issues • Updates: https://github.com/kyan001/WebExtensions/blob/master/ChromeExt_Timer25/UPDATES.md
एक्सटेंशन की मूल जानकारी
नाम | Timer 25: the Minimalist Timer |
ID | gmdbcklinofignhfmibchnmgjcocccbh |
आधिकारिक URL | https://chromewebstore.google.com/detail/timer-25-the-minimalist-t/gmdbcklinofignhfmibchnmgjcocccbh |
विवरण | A minimalist 25 minutes timer. Simple, reliable and easy to use. |
फ़ाइल का आकार | 85.77 KB |
स्थापना संख्या | 10,631 |
वर्तमान संस्करण | 1.15.5 |
अंतिम अपडेट | 2020-08-25 |
प्रकाशन तिथि | 2020-05-02 |
रेटिंग | 4.62/5 कुल 42 रेटिंग्स |
डेवलपर | https://kyan001.com |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://www.kyan001.com |
सहायता पृष्ठ URL | https://github.com/kyan001/WebExtensions/tree/master/ChromeExt_Timer25 |
समर्थित भाषाएँ | de,en,fr,es,it,pl,ru,zh-CN,zh-TW,ja,ko |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "__MSG_extName__", "version": "1.15.5", "short_name": "Timer25", "description": "__MSG_extDesc__", "manifest_version": 2, "icons": { "16": "Timer_16.png", "128": "Timer_128.png" }, "omnibox": { "keyword": "Timer" }, "background": { "scripts": [ "background.js" ] }, "content_security_policy": "script-src 'self'; object-src 'self'", "permissions": [ "notifications", "storage" ], "options_ui": { "page": "options.html", "chrome_style": true, "open_in_tab": false }, "browser_action": { "default_icon": "Timer.png", "default_title": "Timer 25" }, "default_locale": "en", "offline_enabled": true } |