这是脚本的代码
// ==UserScript==
// @name New Userscript
// @namespace http://tampermonkey.net/
// @version 0.1
// @description try to take over the world!
// @author You
// @match www.baidu.com
// @grant none
// ==/UserScript==
function ABC(){
alert("");
}
setInterval("ABC()",3000)
运行后控制台里出错误
Uncaught ReferenceError: ABC is not defined