// ==UserScript== // @name 每天一句土味情话 // @namespace xiaolaji // @description 随便一写 // @version 1.0.0 // @author xiaolaji // @crontab * * once * * // @grant GM_xmlhttpRequest // @grant GM_notification // ==/UserScript== return new Promise((resolve, reject) => { GM_xmlhttpRequest({ method: "GET", url: "https://api.uomg.com/api/rand.qinghua", onload: xhr => { let data = JSON.parse(xhr.responseText) GM_notification(data.content) }, onerror: xhr => { GM_notification("接口请求失败") } }) });