检查运行环境是ScriptCat
// ==UserScript==
// @name 检查运行环境是ScriptCat
// @namespace ScriptCat env test
// @version 0.1
// @description 检查GM_info中的scriptHandler是否为"ScriptCat"
// @author zip11
// @match http://*/*
// @match https://*/*
// @grant GM_info
// ==/UserScript==
(function() {
'use strict';
// 检查scriptHandler是否为"ScriptCat"
function isScriptCat() {
const scriptHandler = GM_info.scriptHandler || '';
return scriptHandler === 'ScriptCat';
}
// 调用函数并输出结果
const result = isScriptCat();
console.log('Is Script Handler "ScriptCat"?', result);
})();