PHPStorm 7.3.1 JSON格式化工具

Dav*_*rge 15 ide format plugins json phpstorm

我使用PHPstorm IDE,并希望找到一个格式化JSON的插件,以便我更容易阅读.

目前我在IDE中显示的文件中有这个:

{"property":"value1","property2":"value2","array1":[{"attr1":"value1"},{"attr2":"value2"}]}
Run Code Online (Sandbox Code Playgroud)

我想要一个可以运行的插件,以便我可以看一下:

{
   "property": "value1",
   "property2": "value2",
   "array1": [
      {
         "attr1": "value1"
      },{
         "attr2": "value2"
      }
   ]
}
Run Code Online (Sandbox Code Playgroud)

我找到了以下插件,但它似乎不适用于PHPStorm:http://plugins.jetbrains.com/plugin/3964?pr =

Dav*_*rge 54

这可能是因为我是PHPStorm的新手,但菜单代码 - > 重新格式化代码(CTRL+ ALT+ L)中的选项.json file可以很好地完成工作,并且可以正常工作.js file.