Water Reminder

A Water Reminder and Tracking Extension which shows desktop notifications.

¿Qué es Water Reminder?

Water Reminder es una extensión de Chrome desarrollada por Divin Divakaran, y su función principal es "A Water Reminder and Tracking Extension which shows desktop notifications.".

Capturas de Pantalla de la Extensión

screenshot
screenshot

Descargar Archivo CRX de la Extensión Water Reminder

Descarga archivos de extensión Water Reminder en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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.                    

Información Básica de la Extensión

Nombre Water Reminder Water Reminder
ID hgipnfbocicekiedonjljfceicobdfgo
URL Oficial https://chromewebstore.google.com/detail/water-reminder/hgipnfbocicekiedonjljfceicobdfgo
Descripción A Water Reminder and Tracking Extension which shows desktop notifications.
Tamaño del Archivo 1.17 MB
Cantidad de Instalaciones 2,061
Versión Actual 1.2
Última Actualización 2018-04-19
Fecha de Publicación 2018-04-19
Calificación 3.57/5 Total de 14 Calificaciones
Desarrollador Divin Divakaran
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://github.com/divindvm/WaterReminder-ChromeExtension
URL de la Página de Ayuda https://github.com/divindvm/WaterReminder-ChromeExtension
Idiomas Soportados 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"
    ]
}