// ==UserScript== // @name QQ网站增加jQuery插件 // @namespace https://github.com/lbbgit // @version 0.2 // @description QQ网站增加jQuery // @author lbbgit // @match https://*.qq.com/* // @grant none // @downloadURL https://update.greasyfork.icu/scripts/374145/QQ%E7%BD%91%E7%AB%99%E5%A2%9E%E5%8A%A0jQuery%E6%8F%92%E4%BB%B6.user.js // @updateURL https://update.greasyfork.icu/scripts/374145/QQ%E7%BD%91%E7%AB%99%E5%A2%9E%E5%8A%A0jQuery%E6%8F%92%E4%BB%B6.meta.js // ==/UserScript== (function() { function loadScript(url) { if (!url) return; var script = document.createElement("script"); script.type = "text/javascript"; script.src = url; document.body.appendChild(script); } loadScript("//mat1.gtimg.com/www/asset/lib/jquery/jquery/jquery-1.11.1.min.js"); // Your code here... })();