// ==UserScript== // @name 提醒喝水 // @namespace https://bbs.tampermonkey.net.cn/ // @version 0.1.0 // @description try to take over the world! // @author Guo // @crontab * once * * * // @grant GM_notification //@grant GM_cookie // ==/UserScript== return new Promise((resolve, reject) => { GM_notification({ title: "喝水提醒", text: "久坐不利于健康,该喝水了", }); });