Greasy Fork is available in English.
我的第一个油猴脚本测试
// ==UserScript==
// @name 我的第一个油猴脚本
// @namespace my first js
// @version 2024-09-26
// @description 我的第一个油猴脚本测试
// @author zz
// @match *://*/*
// @grant none
// @license. MIT
// ==/UserScript==
(function() {
'use strict';
window.onload = function() {
console.log("我是油猴插件的代码!");
alert("你好啊!")
};
})();