js_reverse/夜幕-js/检测Json.parse.js
2023-03-07 18:03:44 +08:00

17 lines
418 B
JavaScript

// ==UserScript==
// @name search decode
// @namespace http://tampermonkey.net/
// @version 0.1
// @description try to take over the world!
// @author NightTeam
// @include *
// @grant none
// ==/UserScript==
(function () {
var rparse = JSON.parse;
JSON.parse = function (a) {
console.log("检测Json.parse", a);
debugger
return rparse(a);
}
})();