Water Reminder

A Water Reminder and Tracking Extension which shows desktop notifications.

Water Reminder là gì?

Water Reminder là một tiện ích mở rộng Chrome được phát triển bởi Divin Divakaran, và tính năng chính của nó là "A Water Reminder and Tracking Extension which shows desktop notifications.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Water Reminder

Tải xuống các tệp mở rộng Water Reminder dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Water Reminder Water Reminder
ID hgipnfbocicekiedonjljfceicobdfgo
URL Chính Thức https://chromewebstore.google.com/detail/water-reminder/hgipnfbocicekiedonjljfceicobdfgo
Mô tả A Water Reminder and Tracking Extension which shows desktop notifications.
Kích Thước Tệp 1.17 MB
Số Lần Cài Đặt 2,061
Phiên Bản Hiện Tại 1.2
Cập Nhật Lần Cuối 2018-04-19
Ngày Phát Hành 2018-04-19
Đánh Giá 3.57/5 Tổng số 14 Đánh Giá
Nhà Phát Triển Divin Divakaran
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/divindvm/WaterReminder-ChromeExtension
URL Trang Trợ Giúp https://github.com/divindvm/WaterReminder-ChromeExtension
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}