您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Brings back the json global variable for JSON Formatter, https://chrome.google.com/webstore/detail/json-formatter/bcjindcccaagfpapjjmafapmmgkkhgoa
当前为
// ==UserScript== // @name json global variable for JSON Formatter // @namespace [email protected] // @version 0.1 // @description Brings back the json global variable for JSON Formatter, https://chrome.google.com/webstore/detail/json-formatter/bcjindcccaagfpapjjmafapmmgkkhgoa // @author Martin Larsen // @match http*://*/*.json // @license GNU GPLv3 // ==/UserScript== /* globals json */ json = JSON.parse(document.getElementById("jsonFormatterRaw").querySelector("pre").innerText); console.log("Type json in the console to inspect and manipulate the JSON object");