This is my first script
当前为
// ==UserScript==
// @name Test
// @namespace https://github.com/paningking
// @version 0.0.1
// @description This is my first script
// @author paningking
// @match *://www.baidu.com/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
// Your code here...
alert('hello world');//弹窗 hello world 弹窗
})();