HOOK:JSON.parse

hook json.parse

Bu betiği kurabilmeniz için Tampermonkey, Greasemonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

Bu betiği kurabilmeniz için Tampermonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

Bu betiği kurabilmeniz için Tampermonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

Bu betiği kurabilmeniz için Tampermonkey ya da Userscripts gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

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

Bu komut dosyasını yüklemek için bir kullanıcı komut dosyası yöneticisi uzantısı yüklemeniz gerekecek.

(Zaten bir kullanıcı komut dosyası yöneticim var, kurmama izin verin!)

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.

(Zateb bir user-style yöneticim var, yükleyeyim!)

// ==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);   // 不改变原来的执行逻辑
    }
})();