王一之 发表于 2024-11-22 14:13
哥哥给下代码,我这边跑一下试试
// ==UserScript==
// @name 定时脚本
// @version 1.0.0
// @author AAA
// @crontab * * * * *
// @grant GM_notification
// ==/UserScript==
return new Promise(resolve => {
GM_notification({
title: "标题",
timeout: 20*1000,
text: "嘿",
progress: 20,
buttons: [ {title: '按钮1'},{title: '按钮2'}]
// highlight: true,
})
});