LZTResponseJsonDecode

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

  1. // ==UserScript==
  2. // @name LZTResponseJsonDecode
  3. // @namespace MeloniuM/LZT
  4. // @version 1.0
  5. // @description Декодирование json ответов форума в читаемый вид.
  6. // @author Melonium
  7. // @license MIT
  8. // @match *://zelenka.guru/*
  9. // @icon data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==
  10. // @grant none
  11. // ==/UserScript==
  12.  
  13. (function() {
  14. 'use strict';
  15. if(window.location.search.includes('_xfResponseType=json')){
  16. let text = JSON.stringify(JSON.parse(document.body.children[0].innerText), null, ' ')
  17. document.body.children[0].innerText = text
  18. }
  19. })();

QingJ © 2025

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