An editor for safely editing URLs or JSONs that contain JSON data.
You have A URL, like this:
https://example.com/?tabtype=weibo&keyword=100%25
You can edit it using JSON5:
{
base: 'https://example.com/',
params: [
[
'tabtype',
'weibo',
],
[
'keyword',
'100%',
],
],
}
Or a JSON like this:
{
"foo": 1,
"data": "{\"bar\":12}"
}
Edit like this:
{
foo: 1,
data: {
'// complex-data-type': 'JSON',
value: {
bar: 12,
},
},
}