Greasy Fork

hello World

这是我第一个测试脚本

// ==UserScript==
// @name             hello World
// @description      这是我第一个测试脚本
// @version          0.001
// @namespace        JackJing
// @match        https://www.baidu.com/
// @grant        none
// ==/UserScript==
(function() {

    console.log('我的脚本加载了');
  
})();