LZTResponseJsonDecode

Декодирование json ответов форума в читаемый вид.

// ==UserScript==
// @name         LZTResponseJsonDecode
// @namespace    MeloniuM/LZT
// @version      1.0
// @description  Декодирование json ответов форума в читаемый вид.
// @author       Melonium
// @license      MIT
// @match        *://zelenka.guru/*
// @icon         data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
    if(window.location.search.includes('_xfResponseType=json')){
        let text = JSON.stringify(JSON.parse(document.body.children[0].innerText), null, '    ')
            document.body.children[0].innerText = text
    }
})();

QingJ © 2025

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