1
chairuosen 2014-01-16 09:38:56 +08:00
贴在chrome console里
|
2
mengzhuo 2014-01-16 09:45:45 +08:00
Chrome下一堆插件
|
3
maikcn 2014-01-16 09:48:22 +08:00
|
4
BenX 2014-01-16 09:50:07 +08:00
local的嘛,就直接preview+插件。
要不就用web的工具http://jsonformatter.curiousconcept.com/ |
5
imkeke 2014-01-16 09:57:19 +08:00
|
6
kukat 2014-01-16 09:58:59 +08:00
前天刚把json viewer换成 json formatter https://chrome.google.com/webstore/detail/json-formatter/bcjindcccaagfpapjjmafapmmgkkhgoa
记得勾选Allow access to file URLs才能打开本地文件 array 和 dictionary 旁边会显示子条目数,很贴心的功能 |
7
xujialiang 2014-01-16 09:59:29 +08:00
sublime
|
8
hilenlai 2014-01-16 10:26:33 +08:00
|
9
lambdaq 2014-01-16 10:27:46 +08:00 1
自己用的bookmarklet
javascript:document.all[3].textContent = JSON.stringify( JSON.parse(document.all[3].textContent), null, 4) |
10
ffts 2014-01-16 10:28:21 +08:00
chrome的json editor?
|
11
sharpnk 2014-01-16 10:44:16 +08:00
|
12
chrisyipw 2014-01-16 10:46:06 +08:00
http://appshopper.com/search/?cat=&platform=mac&device=all&sort=rel&dir=asc&search=json
我在用 Power JSON Editor。 |
13
Zoozy 2014-01-16 10:52:04 +08:00
brew cask install quicklook-json
|
14
ry_wang 2014-01-16 10:56:07 +08:00 3
cat ***.json | python -mjson.tool
|
15
devon 2014-01-16 11:00:52 +08:00
jason 还比较好用:https://www.macupdate.com/app/mac/35588/jason
|
16
soulgain 2014-01-16 13:23:56 +08:00
native app的话,json editor最好用,ls说的jason的话,效率很低,大一点的文件就很容易挂掉。
|
17
SoloCompany 2014-01-16 13:26:08 +08:00 via Android
下载过一个mas的easy json的app,好不好用已经不太记得了
|
18
isaced 2014-01-16 13:45:46 +08:00
JSON Accelerator
|
19
mantianyu 2014-01-16 13:46:35 +08:00
vim
|
20
bianzhifu 2014-01-16 13:53:24 +08:00
sublime+ json格式化插件
|
21
favormm 2014-01-16 13:59:25 +08:00
VirtualJSON
|
22
openroc 2014-01-16 15:19:01 +08:00
|
23
aising 2014-01-16 16:18:04 +08:00
用firefox打开就看见了 整齐的json
|
24
clino 2014-01-16 16:18:05 +08:00
http://tool.oschina.net/codeformat/json 这个也不错,主要是做格式化,格式化以后也可以展开和折叠
|
25
fukai7722 2014-01-16 16:29:04 +08:00
|
26
haibinkuang 2014-01-16 17:01:36 +08:00 1
|
27
leotso 2014-01-16 18:17:24 +08:00
分享一个Web版的
http://json.parser.online.fr/ |
28
senghoo 2014-01-16 18:23:23 +08:00
看文件的话quicklook 的 json插件就ok
|
29
h2ero 2014-01-16 18:24:00 +08:00
firefox的json handle 不错, 国人开发的https://addons.mozilla.org/en-US/firefox/addon/JSON-handle/
|
30
victor 2014-01-16 18:26:21 +08:00
firefox 里面搜索 json 或者用 JsonXmlConvert 呢?
|
31
wuyexiong 2014-01-16 21:01:18 +08:00
sb + pretty json
|
32
nickcheng 2014-01-17 17:01:48 +08:00
JSON Toolbox
|
33
hengxin196 2014-01-17 22:00:36 +08:00
@isaced JSON Accelerator +1
|
34
usoluyun 2014-01-17 22:38:15 +08:00
这种简单的东西用chrome就行了。熟悉chrome dev tool绝对是有好处的。就像编辑器只要你会了vim或者emacs,所有平台甚至terminal里面你都能使用自如,切换windows,linux和mac不会被工具限制。
|
35
jerry0908mo 2014-01-20 23:30:58 +08:00
浏览器插件 http://jsonview.com/
|
36
XxxxD 2019-04-16 18:40:07 +08:00
bookmarklet
javascript:!function(){var n,e,r,i;n=window,e=document.body,r=JSON.parse,i=JSON.stringify,n.isf||(e.innerHTML="<pre>"+i(r(e.innerText),null,4).replace(/\"(.*)[^\:]\:/g,'<span style="color:#9C3636">$1:</span>')+"</pre>",n.isf=!0)}(); |