new script (脚本描述)
// ==UserScript==
// @name New Userscript
// @namespace http://mywangzhan.com/ (命名空间)
// @version 2024-10-07
// @description new script (脚本描述)
// @author s244521
// @match http://*/* (在什么网站生效)
// @icon data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==
// @license AGPL-3.0
// @grant none (脚本权限)
// ==/UserScript==
(
function() {
'use strict';
// Your code here...
console.log("hello world!");
}
)();