显示JS SDK调试信息

try to take over the world!

目前为 2016-05-30 提交的版本。查看 最新版本

// ==UserScript==
// @name         显示JS SDK调试信息
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  try to take over the world!
// @author       You
// @match        *://*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
    var jsonstringify = JSON.stringify;
    window._vds_data = [];
    JSON.stringify = function(value, replacer, space) {
        console.log(jsonstringify(value, 0, 2));
        _vds_data.push(value);
        return jsonstringify(value, replacer, space);
    };
})();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址