-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathdatasource.json
2394 lines (2394 loc) · 72.7 KB
/
datasource.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[
{
"id": "1",
"type": "Translate",
"sort": 1,
"description": "在线翻译工具",
"items": [
{
"id": "1",
"name": "百度翻译",
"url": "http://fanyi.baidu.com/",
"sort": 1,
"target": "_blank",
"description": "百度在线翻译"
},
{
"id": "2",
"name": "有道翻译",
"url": "http://fanyi.youdao.com/",
"sort": 2,
"target": "_blank",
"description": "有道在线翻译"
},
{
"id": "3",
"name": "谷歌翻译",
"url": "https://translate.google.com.hk/",
"sort": 3,
"target": "_blank",
"description": "谷歌在线翻译(需要VPN支持)"
},
{
"id": "4",
"name": "海词翻译",
"url": "http://fanyi.dict.cn/",
"sort": 4,
"target": "_blank",
"description": "海词在线翻译,计算机专业英语"
},
{
"id": "5",
"name": "必应翻译",
"url": "https://www.bing.com/translator/",
"sort": 5,
"target": "_blank",
"description": "微软的在线翻译(Bing)"
}
]
},
{
"id": "3",
"type": "Search",
"sort": 3,
"description": "各大搜索引擎",
"items": [
{
"id": "1",
"name": "Google HK",
"url": "https://www.google.com.hk/",
"sort": 1,
"target": "_blank",
"description": "Google HK"
},
{
"id": "2",
"name": "Google UK",
"url": "https://www.google.co.uk/",
"sort": 2,
"target": "_blank",
"description": "Google UK"
},
{
"id": "3",
"name": "Google JP",
"url": "https://www.google.co.jp/",
"sort": 3,
"target": "_blank",
"description": "Google JP(这个搜索效果比较好)"
},
{
"id": "4",
"name": "Google TW",
"url": "https://www.google.com.tw/",
"sort": 4,
"target": "_blank",
"description": "Google TW(这个搜索效果也不错)"
},
{
"id": "5",
"name": "Baidu",
"url": "https://www.baidu.com/",
"sort": 5,
"target": "_blank",
"description": "百度"
}
]
},
{
"id": "4",
"type": "百科",
"sort": 4,
"description": "在线百科工具",
"items": [
{
"id": "1",
"name": "维基百科",
"url": "https://www.wikipedia.org/",
"sort": 1,
"target": "_blank",
"description": "维基百科"
},
{
"id": "2",
"name": "百度百科",
"url": "https://baike.baidu.com/",
"sort": 2,
"target": "_blank",
"description": "百度百科"
},
{
"id": "3",
"name": "互动百科",
"url": "http://www.baike.com/",
"sort": 3,
"target": "_blank",
"description": "互动百科"
},
{
"id": "3",
"name": "搜狗百科",
"url": "http://baike.sogou.com/",
"sort": 3,
"target": "_blank",
"description": "搜狗百科"
},
{
"id": "4",
"name": "360百科",
"url": "https://baike.so.com/",
"sort": 4,
"target": "_blank",
"description": "360百科"
}
]
},
{
"id": "5",
"type": "Linux Command",
"sort": 5,
"description": "Linux在线命令",
"items": [
{
"id": "1",
"name": "Linux命令大全",
"url": "http://man.linuxde.net/",
"sort": 1,
"target": "_blank",
"description": "Linux命令大全"
},
{
"id": "2",
"name": "菜鸟-Linux命令大全",
"url": "http://www.runoob.com/linux/linux-command-manual.html",
"sort": 2,
"target": "_blank",
"description": "菜鸟-Linux命令大全"
},
{
"id": "3",
"name": "Linux-Command",
"url": "https://jaywcjlove.github.io/linux-command/",
"sort": 3,
"target": "_blank",
"description": "和linuxde的内容差不多,不过这个以后会越来越丰富"
},
{
"id": "4",
"name": "Linux-Command",
"url": "https://linux.cn/topic-commands.html",
"sort": 4,
"target": "_blank",
"description": "Linux命令大全"
},
{
"id": "5",
"name": "Linux命令大全",
"url": "http://www.nginx.cn/docs/command.html",
"sort": 5,
"target": "_blank",
"description": "Linux命令大全"
},
{
"id": "6",
"name": "Linux命令大全",
"url": "http://linux.51yip.com/",
"sort": 6,
"target": "_blank",
"description": "Linux命令大全"
}
]
},
{
"id": "7",
"type": "博客技术文章搜索",
"sort": 7,
"description": "各大博客的技术博文文章搜索",
"items": [
{
"id": "1",
"name": "CSDN Blog",
"url": "https://so.csdn.net/so/search/s.do",
"sort": 1,
"target": "_blank",
"description": "CSDN Blog"
},
{
"id": "2",
"name": "博客园-找找看",
"url": "http://zzk.cnblogs.com/",
"sort": 2,
"target": "_blank",
"description": "博客园-找找看"
},
{
"id": "3",
"name": "GitHub-Search",
"url": "https://github.com/search",
"sort": 3,
"target": "_blank",
"description": "GitHub-Search"
},
{
"id": "4",
"name": "GitBook-Search",
"url": "https://www.gitbook.com/search",
"sort": 4,
"target": "_blank",
"description": "GitBook-Search"
}
]
},
{
"id": "8",
"type": "宽带测试工具",
"sort": 8,
"description": "家庭宽带测试工具",
"items": [
{
"id": "1",
"name": "SpeedTest",
"url": "http://www.speedtest.net/",
"sort": 1,
"target": "_blank",
"description": "SpeedTest(兼容全网的宽带测试工具,主要是服务器节点多)"
}
]
},
{
"id": "9",
"type": "JSON",
"sort": 9,
"description": "bejson-JSON相关工具",
"items": [
{
"id": "1",
"name": "JSON meta",
"url": "http://jsonmate.com/",
"sort": 1,
"target": "_blank",
"description": "JSON可视化编辑工具"
},
{
"id": "2",
"name": "JSON格式化",
"url": "http://tool.oschina.net/codeformat/json",
"sort": 2,
"target": "_blank",
"description": "开源中国-JSON格式化工具"
},
{
"id": "3",
"name": "JSON视图",
"url": "http://www.bejson.com/jsonviewernew/",
"sort": 3,
"target": "_blank",
"description": "JSON在线视图查看器(Online JSON Viewer)"
},
{
"id": "4",
"name": "JSON压缩转义",
"url": "http://www.bejson.com/zhuanyi/",
"sort": 4,
"target": "_blank",
"description": "JSON压缩转义工具-BeJSON.com"
},
{
"id": "5",
"name": "JSON生成Java实体类",
"url": "http://www.bejson.com/json2javapojo/new/",
"sort": 5,
"target": "_blank",
"description": "在线JSON字符串转Java实体类(JavaBean)-BeJSON.com"
},
{
"id": "6",
"name": "JSON生成C#实体类",
"url": "http://www.bejson.com/convert/json2csharp/",
"sort": 6,
"target": "_blank",
"description": "JSON转C#实体类-BeJSON.com"
},
{
"id": "7",
"name": "JSON在线编辑器",
"url": "http://www.bejson.com/jsoneditoronline/",
"sort": 7,
"target": "_blank",
"description": "JSON在线编辑器-BeJSON.com"
},
{
"id": "8",
"name": "JSON着色",
"url": "http://www.bejson.com/color/",
"sort": 8,
"target": "_blank",
"description": "JSON着色工具-BeJSON.com"
},
{
"id": "9",
"name": "XML-JSON互转",
"url": "http://www.bejson.com/xml2json/",
"sort": 9,
"target": "_blank",
"description": "在线XML转JSON,JSON转XML-BeJSON.com"
},
{
"id": "10",
"name": "JSON和GET请求字符串互转",
"url": "http://www.bejson.com/jsontools/json2get/",
"sort": 10,
"target": "_blank",
"description": "JSON和GET请求字符串互转-BeJSON.com"
},
{
"id": "11",
"name": "Excel转JSON",
"url": "http://www.bejson.com/json/col2json/",
"sort": 11,
"target": "_blank",
"description": "在线Excel、CSV转JSON格式-BeJSON.com"
},
{
"id": "12",
"name": "JSON转csv,excel",
"url": "http://www.bejson.com/json/json2excel/",
"sort": 12,
"target": "_blank",
"description": "JSON转csv,JSON转excel-BeJSON.com"
},
{
"id": "13",
"name": "在线JSON转yaml,yaml转JSON",
"url": "http://www.bejson.com/json/json2yaml/",
"sort": 13,
"target": "_blank",
"description": "在线JSON转yaml,yaml转JSON-BeJSON.com"
}
]
},
{
"id": "10",
"type": "编码/加密",
"sort": 10,
"description": "bejson-编码/加密工具",
"items": [
{
"id": "1",
"name": "Base64编码、解码",
"url": "https://www.bejson.com/enc/base64/",
"sort": 1,
"target": "_blank",
"description": "Base64加密、解密"
},
{
"id": "2",
"name": "MD5加密",
"url": "https://www.bejson.com/enc/md5/",
"sort": 2,
"target": "_blank",
"description": "md5加密、解密"
},
{
"id": "3",
"name": "MD5解密",
"url": "https://somd5.com/",
"sort": 3,
"target": "_blank",
"description": "MD5在线免费破解,支持md5,sha1,mysql,sha256,sha512,md4,织梦,vBulletin,Discuz,md5(Joomla),mssql(2012),ntlm,md5(base64),sha1(base64),md5(wordpress),md5(Phpbb3),md5(Unix),des(Unix)等数十种加密方式"
},
{
"id": "4",
"name": "DES,AES等对称加密解密",
"url": "https://www.bejson.com/enc/aesdes/",
"sort": 4,
"target": "_blank",
"description": "AES加密,DES加密,RC4加密,Rabbit加密,TripleDes加密"
},
{
"id": "5",
"name": "SHA加密",
"url": "https://www.bejson.com/enc/sha/",
"sort": 5,
"target": "_blank",
"description": "SHA加密"
},
{
"id": "6",
"name": "Escape编码",
"url": "https://www.bejson.com/enc/escape/",
"sort": 6,
"target": "_blank",
"description": "escape加密、解密"
},
{
"id": "7",
"name": "URL编码",
"url": "https://www.bejson.com/enc/urlencode/",
"sort": 7,
"target": "_blank",
"description": "在线url网址编码、解码"
},
{
"id": "8",
"name": "Javascript Eval加密解密",
"url": "https://www.bejson.com/enc/eval_package/",
"sort": 8,
"target": "_blank",
"description": "evalPackage解密、解密"
},
{
"id": "9",
"name": "摩斯密码加密解密",
"url": "https://www.bejson.com/enc/morse/",
"sort": 9,
"target": "_blank",
"description": "在线摩斯密码加密,摩斯密码解密"
},
{
"id": "10",
"name": "unicode中文互转",
"url": "https://www.bejson.com/convert/unicode_chinese/",
"sort": 10,
"target": "_blank",
"description": "在线unicode转中文,中文转unicode"
}
]
},
{
"id": "11",
"type": "格式化",
"sort": 11,
"description": "bejson-格式化工具",
"items": [
{
"id": "1",
"name": "Javascript/HTML压缩、格式化",
"url": "https://www.bejson.com/jshtml_format/",
"sort": 1,
"target": "_blank",
"description": "可以对JS,HTML,混合HTML和JS进行格式化排版,整齐的进行显示。可以对JS进行加密,加密压缩。"
},
{
"id": "2",
"name": "CSS压缩、格式化",
"url": "https://www.bejson.com/otherformat/css/",
"sort": 2,
"target": "_blank",
"description": "可以对Jcss进行格式化排版,整齐的进行显示。可以对css进行加密,加密压缩。"
},
{
"id": "3",
"name": "XML压缩、格式化",
"url": "https://www.bejson.com/otherformat/xml/",
"sort": 3,
"target": "_blank",
"description": "可以对JXML进行格式化排版,整齐的进行显示。可以对XML进行加密,加密压缩。"
},
{
"id": "4",
"name": "SQL压缩、格式化",
"url": "https://www.bejson.com/otherformat/sql/",
"sort": 4,
"target": "_blank",
"description": "可以对JSQL进行格式化排版,整齐的进行显示。可以对SQL进行加密,加密压缩。"
}
]
},
{
"id": "12",
"type": "网络",
"sort": 12,
"description": "bejson-网络工具",
"items": [
{
"id": "1",
"name": "模拟HTTP请求工具",
"url": "https://www.bejson.com/othertools/profession_request_tools/",
"sort": 1,
"target": "_blank",
"description": "模拟发送HTTP协议的POST或GET请求,支持设置各项参数"
},
{
"id": "2",
"name": "在线模拟websocket请求工具",
"url": "https://www.bejson.com/httputil/websocket/",
"sort": 2,
"target": "_blank",
"description": "在线模拟websocket请求工具"
},
{
"id": "3",
"name": "获取你的IP",
"url": "https://www.bejson.com/httputil/getip/",
"sort": 3,
"target": "_blank",
"description": "获取您的IP"
},
{
"id": "4",
"name": "获取IP信息",
"url": "https://www.bejson.com/httputil/queryip/",
"sort": 4,
"target": "_blank",
"description": "在线查询IP工具(最全信息)"
},
{
"id": "5",
"name": "IP定位周边信息",
"url": "https://www.bejson.com/httputil/ip2addr/",
"sort": 5,
"target": "_blank",
"description": "在线根据IP定位IP所在位置及周边"
},
{
"id": "6",
"name": "获取您的浏览器信息",
"url": "https://www.bejson.com/httputil/clientinfo/",
"sort": 6,
"target": "_blank",
"description": "在线获取客户端系统及浏览器信息"
},
{
"id": "7",
"name": "常用USER_AGENT",
"url": "https://www.bejson.com/httputil/useragent/",
"sort": 7,
"target": "_blank",
"description": "整理时下流行的浏览器User-Agent大全"
},
{
"id": "8",
"name": "IP转数字,数字转IP",
"url": "https://www.bejson.com/convert/ip2int/",
"sort": 8,
"target": "_blank",
"description": "在线ip转int,ip转数字"
},
{
"id": "9",
"name": "TCP/IP子网掩码计算换算",
"url": "https://www.bejson.com/convert/subnetmask/",
"sort": 9,
"target": "_blank",
"description": "局域网规划工具,子网计算划分,子网掩码各个进制表示换算,IP地址进制表示换算"
}
]
},
{
"id": "13",
"type": "前端",
"sort": 13,
"description": "bejson-前端工具",
"items": [
{
"id": "1",
"name": "在线html转js,js转html",
"url": "https://www.bejson.com/convert/html_js/",
"sort": 1,
"target": "_blank",
"description": "给html换行符转成字符串拼接"
},
{
"id": "2",
"name": "fontawesome图标查询",
"url": "http://www.bejson.com/ui/fontawesome/",
"sort": 2,
"target": "_blank",
"description": "fontawesome图标在线查询"
},
{
"id": "3",
"name": "在线获取键盘按键值(keycode、ascii码)",
"url": "http://www.bejson.com/othertools/keycodes/",
"sort": 3,
"target": "_blank",
"description": "在线获取键盘按键值(keycode,ascii码)"
},
{
"id": "4",
"name": "图片在线压缩工具",
"url": "http://www.bejson.com/ui/compress_img/",
"sort": 4,
"target": "_blank",
"description": "压缩0-30是无损,高于30就会丢失像素"
},
{
"id": "5",
"name": "在线代码编辑器",
"url": "http://www.bejson.com/pages/cooleditor/",
"sort": 5,
"target": "_blank",
"description": "很酷的代码开发工具"
},
{
"id": "6",
"name": "在线photoshop",
"url": "http://www.bejson.com/ui/photoshop/",
"sort": 6,
"target": "_blank",
"description": "ps, ps在线图片编辑器是一个专业的在线ps照片处理软件。绿色免安装,直接在您的浏览器上用它修正,调整和美化您的图像。"
},
{
"id": "7",
"name": "H5模板在线制作",
"url": "https://h5.bce.baidu.com/store",
"sort": 7,
"target": "_blank",
"description": "一个在线H5制作平台,依托贴吧等强大社交分享平台,集制作和传播于一体的现代化制作平台"
},
{
"id": "8",
"name": "在线生成圆角图片",
"url": "http://www.bejson.com/ui/borderradius/",
"sort": 8,
"target": "_blank",
"description": "在线图片转圆角图片,支持png,gif,jpg"
},
{
"id": "9",
"name": "IOS安卓手机开发logo生成工具",
"url": "http://www.bejson.com/ui/create_logo/",
"sort": 9,
"target": "_blank",
"description": "IOS安卓logo在线生成器"
},
{
"id": "10",
"name": "ICO图标在线转换工具",
"url": "http://www.bejson.com/ui/icomaker/",
"sort": 10,
"target": "_blank",
"description": "ICO图标在线转换工具"
},
{
"id": "11",
"name": "RunJS在线编辑器",
"url": "http://runjs.cn/code",
"sort": 11,
"target": "_blank",
"description": "RunJS,在线编写、展示html、js、css代码,拥有实时预览、分享、Fork、代码高亮、自动完成等多项特性,提供文件上传、多种登录方式。"
},
{
"id": "12",
"name": "ueditor在线代码编辑器",
"url": "http://www.bejson.com/ui/ueditor/",
"sort": 12,
"target": "_blank",
"description": "在线编辑器,大家可以在这个编辑页面内容最终可以获取源码"
},
{
"id": "13",
"name": "在线调色板",
"url": "http://www.bejson.com/ui/getcolor/",
"sort": 13,
"target": "_blank",
"description": "在线调色板,取色工具"
},
{
"id": "14",
"name": "WEB安全色",
"url": "http://www.bejson.com/ui/safecolor/",
"sort": 14,
"target": "_blank",
"description": "本表中列出的是WEB设计、开发中常用安全色。列于此是为了方便大家参考"
},
{
"id": "15",
"name": "在线图片转Base64编码",
"url": "http://www.bejson.com/ui/image2base64/",
"sort": 15,
"target": "_blank",
"description": "在线图片转Base64编码"
},
{
"id": "16",
"name": "在线图片大小格式(支持webp)转换",
"url": "http://www.bejson.com/ui/imagehandler/",
"sort": 16,
"target": "_blank",
"description": "自定义生成制定格式png,jpg,webp等等"
},
{
"id": "17",
"name": "iPhone/iPad/Android UI尺寸规范",
"url": "http://www.bejson.com/ui/phonesize/",
"sort": 17,
"target": "_blank",
"description": "UI尺寸规范,UI图标尺寸,UI界面尺寸,iPhone6尺寸,iPhone6 Plus尺寸,安卓尺寸,iOS尺寸"
},
{
"id": "18",
"name": "阿里巴巴矢量图标库",
"url": "http://www.iconfont.cn/plus/collections/index",
"sort": 18,
"target": "_blank",
"description": "Iconfont-国内功能很强大且图标内容很丰富的矢量图标库,提供矢量图标下载、在线存储、格式转换等功能。阿里巴巴体验团队倾力打造,设计和前端开发的便捷工具"
},
{
"id": "19",
"name": "fontawesome矢量图标库",
"url": "http://fontawesome.io/icons/",
"sort": 19,
"target": "_blank",
"description": "Font Awesome, the iconic font and CSS framework"
},
{
"id": "20",
"name": "SVG代码编辑预览",
"url": "http://www.bejson.com/ui/svg_editor/",
"sort": 20,
"target": "_blank",
"description": "SVG在线制作编辑预览工具"
},
{
"id": "21",
"name": "常用JS资源库",
"url": "http://www.bejson.com/othertools/libcdn/",
"sort": 21,
"target": "_blank",
"description": "罗列这类js类库希望能帮助到大家,下面类库都支持CDN,所以不用担心速度问题,就算某个节点慢也不会影响全国其他地区的访问速度"
},
{
"id": "22",
"name": "弹出窗口生成器",
"url": "http://www.bejson.com/ui/openweb/",
"sort": 22,
"target": "_blank",
"description": "OPEN参数生成器,弹出窗口生成器"
},
{
"id": "23",
"name": "自动排版工具",
"url": "http://www.bejson.com/ui/texteditor/",
"sort": 23,
"target": "_blank",
"description": "在线自动排版工具"
}
]
},
{
"id": "14",
"type": "后端",
"sort": 14,
"description": "bejson-后端工具",
"items": [
{
"id": "1",
"name": "JSON生成Java实体类",
"url": "http://www.bejson.com/json2javapojo/new/",
"sort": 1,
"target": "_blank",
"description": "在线JSON字符串转Java实体类(JavaBean)"
},
{
"id": "2",
"name": "JSON生成C#实体类",
"url": "http://www.bejson.com/convert/json2csharp/",
"sort": 2,
"target": "_blank",
"description": "JSON转C#实体类"
},
{
"id": "3",
"name": "mysql转Java实体类",
"url": "http://www.bejson.com/devtools/sql2pojo/",
"sort": 3,
"target": "_blank",
"description": "在线SQL转Java实体类(POJO,JavaBean)"
},
{
"id": "4",
"name": "oracle转Java实体类",
"url": "http://www.bejson.com/othertools/sql2pojo/",
"sort": 4,
"target": "_blank",
"description": "数据库sql转Java实体类"
},
{
"id": "5",
"name": "properties转yaml",
"url": "https://www.bejson.com/devtools/properties2yaml/",
"sort": 5,
"target": "_blank",
"description": "在线properties转yaml工具(properties to yaml)"
},
{
"id": "6",
"name": "YAML在线编辑(校验)器",
"url": "https://www.bejson.com/validators/yaml_editor/",
"sort": 6,
"target": "_blank",
"description": "YAML在线编辑器,实时查看您的YAML文件编辑情况"
}
]
},
{
"id": "15",
"type": "转换",
"sort": 15,
"description": "bejson-转换工具",
"items": [
{
"id": "1",
"name": "在线html转js,js转html",
"url": "https://www.bejson.com/convert/html_js/",
"sort": 1,
"target": "_blank",
"description": "给html换行符转成字符串拼接"
},
{
"id": "2",
"name": "php反序列化成JSON和代码",
"url": "https://www.bejson.com/convert/deserialize/",
"sort": 2,
"target": "_blank",
"description": "反序列化生成json和代码"
},
{
"id": "3",
"name": "在线图片大小格式(支持webp)转换",
"url": "https://www.bejson.com/ui/imagehandler/",
"sort": 3,
"target": "_blank",
"description": "自定义生成制定格式png,jpg,webp等等"
},
{
"id": "4",
"name": "jpg,png图片在线转svg",
"url": "https://www.bejson.com/convert/image_to_svg/",
"sort": 4,
"target": "_blank",
"description": "在线jpg,png图片转SVG工具"
},
{
"id": "5",
"name": "在线地图经纬度定位换算",
"url": "https://www.bejson.com/convert/map/",
"sort": 5,
"target": "_blank",
"description": "在线经纬度定位地图,在线地图获取经纬度"
},
{
"id": "6",
"name": "px转em,em转px",
"url": "https://www.bejson.com/ui/px2em/",
"sort": 6,
"target": "_blank",
"description": "PX转EM,EM转PX在线工具"
},
{
"id": "7",
"name": "在线图片转Base64编码",
"url": "https://www.bejson.com/ui/image2base64/",
"sort": 7,
"target": "_blank",
"description": "在线图片转Base64编码"
},
{
"id": "8",
"name": "unicode中文互转",
"url": "https://www.bejson.com/convert/unicode_chinese/",
"sort": 8,
"target": "_blank",
"description": "在线unicode转中文,中文转unicode"
},
{
"id": "9",
"name": "在线短地址转换",
"url": "https://www.bejson.com/convert/shorturl/",
"sort": 9,
"target": "_blank",
"description": "在线短地址转换工具"
},
{
"id": "10",
"name": "Unix时间转换",
"url": "https://www.bejson.com/convert/unix/",
"sort": 10,
"target": "_blank",
"description": "Unix时间戳转换"
},
{
"id": "11",
"name": "进制转换",
"url": "https://www.bejson.com/convert/jinzhi/",
"sort": 11,
"target": "_blank",
"description": "支持二进制 十进制 十六进制 六十四进制互相转换"
},
{
"id": "12",
"name": "16进制到文本字符串",
"url": "https://www.bejson.com/convert/ox2str/",
"sort": 12,
"target": "_blank",
"description": "16进制到文本字符串的转换,在线实时转换"
},
{
"id": "13",
"name": "字母大小写转换",
"url": "https://www.bejson.com/convert/uplowercase/",
"sort": 13,
"target": "_blank",
"description": "在线大小写转换"
},
{
"id": "14",
"name": "RGB颜色和HEX互转",
"url": "https://www.bejson.com/convert/rgbhex/",
"sort": 14,
"target": "_blank",
"description": "在线RGB三原色-HEX16色转换"
},
{
"id": "15",
"name": "在线文档转PDF",
"url": "https://www.bejson.com/convert/file2pdf/",
"sort": 15,
"target": "_blank",
"description": "在线文档转pdf"
},
{
"id": "16",
"name": "二维码生成与解码",
"url": "https://www.bejson.com/convert/qrcode/",
"sort": 16,
"target": "_blank",
"description": "在线生成二维码,在线解密二维码"
},
{
"id": "17",
"name": "数字转中文(人民币)",
"url": "https://www.bejson.com/convert/numtohz/",
"sort": 17,
"target": "_blank",
"description": "数字转中文,阿拉伯数字转中文,人民币转换"
},
{
"id": "18",
"name": "在线文件大小换算",
"url": "https://www.bejson.com/convert/filesize/",
"sort": 18,
"target": "_blank",
"description": "在线文件大小转换,bit,bytes,KB,MB,GB,TB转换"
},
{
"id": "19",
"name": "NATIVE/ASCII编码互转工具",
"url": "https://www.bejson.com/convert/nativeascii/",
"sort": 19,
"target": "_blank",
"description": "NATIVE/ASCII编码互转工具"
},
{
"id": "20",
"name": "Html与UBB代码互相转换工具",
"url": "https://www.bejson.com/convert/htmlubb/",
"sort": 20,
"target": "_blank",
"description": "在线Html与UBB代码互相转换工具"
},
{
"id": "21",
"name": "汉字转换拼音",
"url": "https://www.bejson.com/convert/topinying/",
"sort": 21,
"target": "_blank",
"description": "中文转换拼音,汉字转换拼音"
},
{