mirror of
https://github.com/luzhisheng/js_reverse.git
synced 2025-04-20 13:30:03 +08:00
17 lines
418 B
JavaScript
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);
|
|
}
|
|
})(); |