// ==UserScript==
// @name New Userscript
// @namespace https://bbs.tampermonkey.net.cn/
// @version 0.1.0
// @description try to take over the world!
// @author You
// @match *
// @grant GM_notification
// @run-at document-end
// ==/UserScript==
(function () {
'use strict';
function doit(message) {
GM_notification({
title: location.host,
text: message,
timeout: 2000,
highlight: false,
})
}
setTimeout(() => {
doit("123123")
console.log('提示!')
}, 2000)
// Your code here...
})();
大佬们看下这里为何没有弹出提示🤕