HOOK:JSON.parse

hook json.parse

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

// ==UserScript==
// @name         HOOK:JSON.parse
// @namespace    http://tampermonkey.net/
// @version      2025-08-25
// @description  hook json.parse
// @author       逆向黄sir
// @match        *
// @icon         https://mmbiz.qpic.cn/sz_mmbiz_png/bMfOnvYiavj6Oq6zh6NLR1cHFCsVPqXIGvG8hROL0cJRkwGJzcshrJ6Wib8KjhzswbWbylB8Arxicg7icq5xib9BnQA/300?wx_fmt=png&wxfrom=18
// @grant        none
// @license      MIT
// ==/UserScript==

(function() {
    var parse_ = JSON.parse;
    JSON.parse = function(arg) {
        console.log("您猜怎么着?断住了! ——> ",arg);
        debugger;
        return parse_(arg);   // 不改变原来的执行逻辑
    }
})();