Water Reminder
A Water Reminder and Tracking Extension which shows desktop notifications.
ما هو Water Reminder؟
Water Reminder هو إضافة Chrome تم تطويرها بواسطة Divin Divakaran، والميزة الرئيسية لها هي "A Water Reminder and Tracking Extension which shows desktop notifications.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Water Reminder
قم بتنزيل ملفات الامتداد Water Reminder بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
This is a simple and light weight extension for tracking water intake daily. The app will give you notifications on desired time intervals. You can change the notification message, notification interval, notification sound etc.
معلومات أساسية عن التمديد
الاسم | Water Reminder |
ID | hgipnfbocicekiedonjljfceicobdfgo |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/water-reminder/hgipnfbocicekiedonjljfceicobdfgo |
الوصف | A Water Reminder and Tracking Extension which shows desktop notifications. |
حجم الملف | 1.17 MB |
عدد التثبيتات | 2,061 |
النسخة الحالية | 1.2 |
آخر تحديث | 2018-04-19 |
تاريخ النشر | 2018-04-19 |
تقييم | 3.57/5 مجموع تقييمات 14 |
المطور | Divin Divakaran |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
موقع الإضافة | https://github.com/divindvm/WaterReminder-ChromeExtension |
عنوان صفحة المساعدة | https://github.com/divindvm/WaterReminder-ChromeExtension |
اللغات المدعومة | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Water Reminder", "version": "1.2", "author": "Divin Divakaran", "homepage_url": "https:\/\/github.com\/divindvm\/WaterReminder-ChromeExtension", "description": "A Water Reminder and Tracking Extension which shows desktop notifications.", "icons": { "48": "icon.png" }, "permissions": [ "storage", "notifications", "contextMenus" ], "browser_action": { "default_icon": "icon.png", "default_popup": "popup.html" }, "options_page": "notification_options.html", "background": { "scripts": [ "notification_background.js", "eventPage.js" ], "persistent": false }, "web_accessible_resources": [ "icon.png" ] } |