Water Reminder

A Water Reminder and Tracking Extension which shows desktop notifications.

Water Reminderคืออะไร?

Water Reminder เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Divin Divakaran และคุณลักษณะหลักของมันคือ "A Water Reminder and Tracking Extension which shows desktop notifications."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Water Reminder

ดาวน์โหลดไฟล์ส่วนขยาย 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
URL อย่างเป็นทางการ 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"
    ]
}