// ==UserScript== // @name Any jQuery,页面注入jQuery,方便控制台调试代码 // @namespace http://bbs.91wc.net/any-jquery.htm // @version 0.1 // @description write once run anywhere,注入jQuery,方便控制台调试代码 // @author Wilson // @match http*://*/* // @require https://cdn.jsdelivr.net/npm/jquery@3.2.1/dist/jquery.min.js // @grant unsafeWindow // @downloadURL none // ==/UserScript== //main function main() { //Your codes here //你也可以像这样向页面中写全局变量或函数 //_g.a="test a"; //_g.b = function(){ // console.log("test b"); //} } //注入jQuery和全局变量_g this.$ = this.jQuery = jQuery.noConflict(true); $("body").append(''); if(_g._jq === null){ $.getScript("https://cdn.jsdelivr.net/npm/jquery@3.2.1/dist/jquery.min.js", function(){ //初始化_jq变量 _g._jq = _g.jQuery; _g._jq.version=_g._jq.fn.jquery; //call main main(); }); }