Drink Water Reminder
Google chrome extension to remind users to drink water periodically.
What is Drink Water Reminder?
Drink Water Reminder is a Chrome extension developed by sunji, and its main feature is "Google chrome extension to remind users to drink water periodically.".
Extension Screenshots
Download Drink Water Reminder Extension CRX File
Download Drink Water Reminder extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
可用于定时提醒用户补充水分,时间间隔分为三档:1分钟,15分钟,30分钟。提醒到期后可以继续下一次间隔提醒。
Extension Basic Information
Name | Drink Water Reminder |
ID | mkjfejibalgjojnmohdpaiafofofiloi |
Official URL | https://chromewebstore.google.com/detail/drink-water-reminder/mkjfejibalgjojnmohdpaiafofofiloi |
Description | Google chrome extension to remind users to drink water periodically. |
File Size | 148 KB |
Installation Count | 175 |
Current Version | 1.0 |
Last Updated | 2021-02-24 |
Publish Date | 2021-02-23 |
Rating | 4.00/5 Total 1 Ratings |
Developer | sunji |
[email protected] | |
Payment Type | free |
Supported Languages | en,zh-CN |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "__MSG_name__", "description": "__MSG_description__", "version": "1.0", "manifest_version": 2, "permissions": [ "alarms", "notifications", "storage" ], "background": { "scripts": [ "background.js" ], "persistent": false }, "browser_action": { "default_title": "__MSG_title__", "default_popup": "popup.html" }, "icons": { "16": "images\/drink_water16.png", "32": "images\/drink_water32.png", "48": "images\/drink_water48.png", "128": "images\/drink_water128.png" }, "default_locale": "zh_CN" } |