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 с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
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 |
URL страницы помощи | 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" ] } |