Water Reminder

A Water Reminder and Tracking Extension which shows desktop notifications.

Co je Water Reminder?

Water Reminder je rozšíření Chrome vyvinuté Divin Divakaran, a jeho hlavní funkcí je „A Water Reminder and Tracking Extension which shows desktop notifications.“.

Snímky obrazovky rozšíření

screenshot
screenshot

Stáhnout soubor CRX rozšíření Water Reminder

Stáhněte si soubory rozšíření Water Reminder ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název Water Reminder Water Reminder
ID hgipnfbocicekiedonjljfceicobdfgo
Oficiální URL https://chromewebstore.google.com/detail/water-reminder/hgipnfbocicekiedonjljfceicobdfgo
Popis A Water Reminder and Tracking Extension which shows desktop notifications.
Velikost souboru 1.17 MB
Počet instalací 2,061
Aktuální Verze 1.2
Poslední Aktualizace 2018-04-19
Datum Vydání 2018-04-19
Hodnocení 3.57/5 Celkem 14 Hodnocení
Vývojář Divin Divakaran
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://github.com/divindvm/WaterReminder-ChromeExtension
URL Stránky Nápovědy https://github.com/divindvm/WaterReminder-ChromeExtension
Podporované Jazyky 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"
    ]
}