您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Javascript function hook
此脚本不应直接安装。它是供其他脚本使用的外部库,要使用该库请加入元指令 // @require https://update.gf.qytechs.cn/scripts/443030/1037826/Hookjs.js
// ==UserScript== // @name Hook.js // @namespace https://github.com/invobzvr // @version 0.1 // @description Javascript function hook // @author invobzvr // @homepageURL https://github.com/invobzvr/invotoys.js/tree/main/hook.js // @supportURL https://github.com/invobzvr/invotoys.js/issues // @license GPL-3.0 // ==/UserScript== (function () { const ORI = {}; Function.prototype.hook = function (params) { typeof params === 'function' && (params = { scope: window, before: params, }); !params.scope && (params.scope = window); const that = this, name = that.name; ORI[name] = that; params.scope[name] = function () { if (typeof params.before === 'function') { const ret = params.before.apply(this, arguments); if (ret !== undefined) { return ret; } } let val = that.apply(this, arguments); if (typeof params.after === 'function') { const ret = params.after.apply(this, [val, arguments]); if (ret !== undefined) { val = ret; } } return val; } } })();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址