Water Reminder

A Water Reminder and Tracking Extension which shows desktop notifications.

什麼是Water Reminder?

Water Reminder是由Divin Divakaran開發的Chrome擴展程式,該擴展的主要功能是“A Water Reminder and Tracking Extension which shows desktop notifications.”。

擴展截圖

screenshot
screenshot

下載Water Reminder擴展crx文件

下載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 Water Reminder
ID hgipnfbocicekiedonjljfceicobdfgo
官方網址 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"
    ]
}