您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Load remote scripts
当前为
// ==UserScript== // @name Script Loader // @namespace https://greasyfork.org/en/users/9694-croned // @version 1.0 // @description Load remote scripts // @author Croned // @match * // @grant none // ==/UserScript== (function(w) { 'use strict'; w.sloader = {}; w.sloader.load = function (url, cb) { var script = document.createElement("script"); script.src = url; script.onload = cb; document.body.appendChild(script); }; w.sloader.jquery = function (cb) { this.load("https://code.jquery.com/jquery-3.2.1.min.js", cb); }; w.sloader.jqueryui = function (cb) { this.load("https://code.jquery.com/ui/1.12.1/jquery-ui.min.js", cb); }; })(window);