加载jquery脚本
目前為
// ==UserScript==
// @name suizhikuo-load-jquery
// @namespace http://tampermonkey.net/
// @version 2024-04-09
// @description 加载jquery脚本
// @author 随智阔
// @match *://*/*
// @icon data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==
// @grant none
// @require https://code.jquery.com/jquery-3.7.1.js
// @license MIT
// ==/UserScript==
(function () {
'use strict';
// debugger;
console.log("篡改猴(Tampermonkey)脚本--->运行");
console.log("篡改猴(Tampermonkey)脚本--->jquery-3.7.1.js");
})();