Idle reminder
Gives user notification after a certain maount of time idle.
Idle reminder क्या है?
Idle reminder Matthew Perlick द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Gives user notification after a certain maount of time idle."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Idle reminder एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
This extension sends you a reminder notification after you've been inactive for a certain amount of time. You can set this time by clicking the Idle Reminder icon in your chrome toolbar. This extension is intended for people who wan't to stay on task while working. It can also be helpful for remote workers that will appear as 'inactive' or 'idle' to their employer and coworkers after a certain amount of time away from the computer. This extension does not collect any user data, is incredibly lightweight, and completely open source. All source files available on github here: https://github.com/perlick/inactivity-reminder.
एक्सटेंशन की मूल जानकारी
नाम | |
ID | mkboaajngkkeoeoamcbcngficggmlloj |
आधिकारिक URL | https://chrome.google.com/webstore/detail/idle-reminder/mkboaajngkkeoeoamcbcngficggmlloj |
विवरण | Gives user notification after a certain maount of time idle. |
फ़ाइल का आकार | 13.32 KB |
स्थापना संख्या | 33 |
वर्तमान संस्करण | 1.0 |
अंतिम अपडेट | 2020-04-07 |
प्रकाशन तिथि | 2020-04-07 |
रेटिंग | 1.00/5 कुल 1 रेटिंग्स |
डेवलपर | Matthew Perlick |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Idle reminder", "description": "Gives user notification after a certain maount of time idle.", "version": "1.0", "manifest_version": 2, "permissions": [ "notifications", "storage", "idle" ], "background": { "scripts": [ "background.js" ], "persistent": false }, "browser_action": { "default_title": "Idle Reminder", "default_popup": "popup.html" }, "icons": { "16": "drink_water16.png", "32": "drink_water32.png", "48": "drink_water48.png", "128": "drink_water128.png" } } |