Water Reminder

A Water Reminder and Tracking Extension which shows desktop notifications.

Co to jest Water Reminder?

Water Reminder to rozszerzenie Chrome opracowane przez Divin Divakaran, a jego główną funkcją jest „A Water Reminder and Tracking Extension which shows desktop notifications.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia Water Reminder

Pobierz pliki rozszerzeń Water Reminder w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Water Reminder Water Reminder
ID hgipnfbocicekiedonjljfceicobdfgo
Oficjalny URL https://chromewebstore.google.com/detail/water-reminder/hgipnfbocicekiedonjljfceicobdfgo
Opis A Water Reminder and Tracking Extension which shows desktop notifications.
Rozmiar pliku 1.17 MB
Liczba instalacji 2,061
Aktualna Wersja 1.2
Ostatnia Aktualizacja 2018-04-19
Data Publikacji 2018-04-19
Ocena 3.57/5 Łącznie 14 Oceny
Deweloper Divin Divakaran
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/divindvm/WaterReminder-ChromeExtension
Adres URL Strony Pomocy https://github.com/divindvm/WaterReminder-ChromeExtension
Obsługiwane Języki 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"
    ]
}