Chrome Alarms
Set alarms that will open specified URL's at desired times. The URL will be opened in a new tab along with an optional notification.
Chrome Alarms क्या है?
Chrome Alarms KidEkko द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Set alarms that will open specified URL's at desired times. The URL will be opened in a new tab along with an optional notification."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Chrome Alarms एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
An alarm clock for your browser. If you struggle to remember to check your emails regularly, if you want to schedule a task for yourself that you don't have time for right now, this is for you. I designed this as someone who has ADHD, and have struggled with remembering to do tasks that I put aside even when I had time. This is a very simple extension that will allow you to create alarms that open tabs to any website you want at whatever time you want.
एक्सटेंशन की मूल जानकारी
नाम | Chrome Alarms |
ID | gflcogcigloiniobpagephgaldchpclf |
आधिकारिक URL | https://chromewebstore.google.com/detail/chrome-alarms/gflcogcigloiniobpagephgaldchpclf |
विवरण | Set alarms that will open specified URL's at desired times. The URL will be opened in a new tab along with an optional notification. |
फ़ाइल का आकार | 29.69 KB |
स्थापना संख्या | 105 |
वर्तमान संस्करण | 1.0.1 |
अंतिम अपडेट | 2022-04-08 |
प्रकाशन तिथि | 2022-03-25 |
रेटिंग | 3.00/5 कुल 2 रेटिंग्स |
डेवलपर | KidEkko |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Chrome Alarms", "description": "Set alarms that will open specified URL's at desired times. The URL will be opened in a new tab along with an optional notification.", "version": "1.0.1", "manifest_version": 3, "background": { "service_worker": "background.js" }, "permissions": [ "storage", "alarms", "background", "notifications" ], "action": { "default_popup": "popup.html", "default_icon": { "16": "\/images\/alarm16.png", "32": "\/images\/alarm32.png", "48": "\/images\/alarm48.png", "128": "\/images\/alarm128.png" } }, "icons": { "16": "\/images\/alarm16.png", "32": "\/images\/alarm32.png", "48": "\/images\/alarm48.png", "128": "\/images\/alarm128.png" }, "options_page": "homepage.html" } |