每天一句土味情话
// ==UserScript==
// @name 每天一句土味情话
// @namespace xiaolaji
// @description 随便一写
// @version 1.0.1
// @author xiaolaji
// @crontab * * once * *
// @grant GM_xmlhttpRequest
// @grant GM_notification
// @connect api.uomg.com
// ==/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("接口请求失败")
}
})
});