Pomodoro clock
A simple pomodoro clock in your browser to hack your productivity.
Pomodoro clock क्या है?
Pomodoro clock syvo द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "A simple pomodoro clock in your browser to hack your productivity."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Pomodoro clock एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Use this extension to organize your work using the well-known pomodoro timer technique: work X minutes, have an Y minutes break, and so on. You can configure the duration of each streak as it suits your own pace. The extension will display a notification and play a short ring at the end of each timer. The source code is available on Github along with a few explanations. Please don't use reviews to submit your issues :) You can post them on Github, like enhancement requests. All constructive comments are welcome.
एक्सटेंशन की मूल जानकारी
नाम | Pomodoro clock |
ID | inilkfalkkngchkgodhhcmgbofohnkmg |
आधिकारिक URL | https://chromewebstore.google.com/detail/pomodoro-clock/inilkfalkkngchkgodhhcmgbofohnkmg |
विवरण | A simple pomodoro clock in your browser to hack your productivity. |
फ़ाइल का आकार | 194 KB |
स्थापना संख्या | 734 |
वर्तमान संस्करण | 2.5.1 |
अंतिम अपडेट | 2023-05-05 |
प्रकाशन तिथि | 2020-06-07 |
रेटिंग | 5.00/5 कुल 4 रेटिंग्स |
डेवलपर | syvo |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://github.com/macmorning/pomodoro-webext |
सहायता पृष्ठ URL | https://github.com/macmorning/pomodoro-webext |
गोपनीयता नीति पृष्ठ URL | https://macmorning.github.io/snowtools-webext |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Pomodoro clock", "version": "2.5.1", "description": "A simple pomodoro clock in your browser to hack your productivity.", "homepage_url": "https:\/\/github.com\/macmorning\/pomodoro-webext", "icons": { "48": "icons\/clock-48.png" }, "background": { "scripts": [ "background.js" ] }, "options_ui": { "page": "options.html" }, "browser_action": { "default_title": "Pomodoro", "default_icon": { "48": "icons\/clock-48.png" }, "default_popup": "pomodoro.html" }, "permissions": [ "storage", "notifications", "alarms" ], "optional_permissions": [ "downloads" ] } |