JSON Formatter
Extension Actions
CRX ID
kbnehnckbkaejdplbjcbnodabcfakcgl
Description from extension meta
Format unformatted JSON strings
Image from store
Description from store
This will take unformatted json string as input and give formatted json string as output.
Example:
Before
---------------------------------------------------------------
{"f_name":"Rohit", "l_name":"Moga", "age":26, "car":null}
After
---------------------------------------------------------------
{
"f_name": "Rohit",
"l_name": "Moga",
"age": 26,
"car": null
}