Simple Water Reminder

A simple water reminder script that alerts you to drink water.

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 Tampermonkey,才能安裝此腳本

您需要先安裝使用者腳本管理器擴充功能後才能安裝該腳本。

(我已經安裝了使用者腳本管理器,讓我安裝!)

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

(我已經安裝了使用者樣式管理器,讓我安裝!)

// ==UserScript==
// @name         Simple Water Reminder
// @namespace    http://tampermonkey.net/
// @version      1.0
// @description  A simple water reminder script that alerts you to drink water.
// @author       jyomama28
// @match        *://*/*
// @grant        GM_addStyle
// ==/UserScript==

//To all the people who use this as well as my other scripts, I really appreciate it. I work hard on making these scripts!
//Please enjoy this as well as any of my other scripts!
//If you have any questions, Please email me! email me at: [email protected]
//Agian, Thank you all!

alert('Remember to drink water!');
setInterval(function() {
    alert('Remember to drink water!');
}, 600000); // <--- this will alert you every 10 minutes

// To change the time of the reminder, change the number in the setInterval function to any of the timees below:
//1000 ms = 1 second
// 60000 ms = 1 minute
// 300000 ms = 5 minutes
// 600000 ms = 10 minutes
// 1200000 ms = 20 minutes
// 1800000 ms = 30 minutes
// 2400000 ms = 40 minutes
// 3000000 ms = 50 minutes
// 3600000 ms = 1 hour
// 86400000 ms = 1 day