-
Notifications
You must be signed in to change notification settings - Fork 79
Expand file tree
/
Copy pathindex.json
More file actions
3189 lines (3189 loc) · 103 KB
/
index.json
File metadata and controls
3189 lines (3189 loc) · 103 KB
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
{
"version": "1.0.0",
"lastUpdated": "2026-01-24",
"tools": [
{
"id": "json-to-yaml",
"name": "JSON 转 YAML",
"slug": "json-to-yaml",
"category": "converter",
"tags": [
"json",
"yaml",
"converter",
"developer"
],
"author": "JustHTMLs",
"authorUrl": "https://github.com/justhtmls",
"version": "1.0.0",
"description": "将 JSON 格式转换为 YAML 格式的在线工具,支持复制到剪贴板",
"longDescription": "这是一个轻量级的 JSON 到 YAML 转换工具。直接在浏览器中处理数据,无需服务器,保护您的隐私。",
"icon": "🔄",
"color": "#3498db",
"entry": "tools/json-to-yaml/app.html",
"detail": "tools/json-to-yaml/index.html",
"createdAt": "2025-12-22",
"updatedAt": "2025-12-22",
"featured": true,
"repo": "https://github.com/justhtmls/html-tools"
},
{
"id": "json-formatter",
"name": "JSON 格式化工具",
"slug": "json-formatter",
"category": "converter",
"tags": [
"json",
"formatter",
"validator",
"beautifier"
],
"author": "JustHTMLs",
"authorUrl": "https://github.com/justhtmls",
"version": "1.0.0",
"description": "格式化、压缩和验证 JSON 数据",
"longDescription": "JSON 格式化工具可以帮助你美化、压缩和验证 JSON 数据,支持多种缩进样式、键名排序,显示字符数、行数、文件大小等统计信息。",
"icon": "✨",
"color": "#667eea",
"entry": "tools/json-formatter/app.html",
"detail": "tools/json-formatter/index.html",
"createdAt": "2025-12-23",
"updatedAt": "2025-12-23",
"featured": true,
"repo": "https://github.com/justhtmls/html-tools"
},
{
"id": "curl-converter",
"name": "CURL 转代码工具",
"slug": "curl-converter",
"category": "developer",
"tags": [
"curl",
"http",
"request",
"developer"
],
"author": "JustHTMLs",
"authorUrl": "https://github.com/justhtmls",
"version": "1.0.0",
"description": "将 curl 命令转换成 JavaScript / Python / Java / Go 请求代码",
"longDescription": "CURL 转代码工具可以把浏览器复制的 curl 命令解析成 JavaScript fetch、Python requests、Java HttpClient 与 Go net/http 代码,支持常见 headers、body 与认证配置。",
"icon": "🧭",
"color": "#f59e0b",
"entry": "tools/curl-converter/app.html",
"detail": "tools/curl-converter/index.html",
"createdAt": "2026-01-24",
"updatedAt": "2026-01-24",
"featured": true,
"repo": "https://github.com/justhtmls/html-tools"
},
{
"id": "base64-encode",
"name": "Base64 编码解码",
"slug": "base64-encode",
"category": "converter",
"tags": [
"base64",
"encoder",
"decoder",
"converter"
],
"author": "JustHTMLs",
"authorUrl": "https://github.com/justhtmls",
"version": "1.0.0",
"description": "快速进行 Base64 编码和解码,支持文本和文件",
"longDescription": "Base64 编码解码工具,支持 URL 安全模式,可拖拽文件进行编码,完全离线工作保护隐私。",
"icon": "🔐",
"color": "#f093fb",
"entry": "tools/base64-encode/app.html",
"detail": "tools/base64-encode/index.html",
"createdAt": "2025-12-22",
"updatedAt": "2025-12-22",
"featured": true,
"repo": "https://github.com/justhtmls/html-tools"
},
{
"id": "color-picker",
"name": "颜色选择器",
"slug": "color-picker",
"category": "developer",
"tags": [
"color",
"picker",
"design",
"converter"
],
"author": "JustHTMLs",
"authorUrl": "https://github.com/justhtmls",
"version": "1.0.0",
"description": "专业的颜色选择工具,支持多种颜色格式转换",
"longDescription": "颜色选择器支持 HEX、RGB、HSL、HSV 格式实时转换,带有色相和透明度滑块,是设计师和开发者的必备工具。",
"icon": "🎨",
"color": "#ff6b6b",
"entry": "tools/color-picker/app.html",
"detail": "tools/color-picker/index.html",
"createdAt": "2025-12-22",
"updatedAt": "2025-12-22",
"featured": true,
"repo": "https://github.com/justhtmls/html-tools"
},
{
"id": "regex-tester",
"name": "正则表达式测试器",
"slug": "regex-tester",
"category": "developer",
"tags": [
"regex",
"testing",
"developer"
],
"author": "JustHTMLs",
"authorUrl": "https://github.com/justhtmls",
"version": "1.0.0",
"description": "实时测试和调试正则表达式,支持所有常用标志位",
"longDescription": "正则表达式测试器是开发者的必备工具,支持实时测试正则表达式,显示匹配结果和位置,帮助快速调试和优化正则模式。",
"icon": "🔍",
"color": "#a855f7",
"entry": "tools/regex-tester/app.html",
"detail": "tools/regex-tester/index.html",
"createdAt": "2025-12-22",
"updatedAt": "2025-12-22",
"featured": true,
"repo": "https://github.com/justhtmls/html-tools"
},
{
"id": "url-encode",
"name": "URL 编码解码",
"slug": "url-encode",
"category": "converter",
"tags": [
"url",
"encoder",
"decoder",
"converter"
],
"author": "JustHTMLs",
"authorUrl": "https://github.com/justhtmls",
"version": "1.0.0",
"description": "快速进行 URL 编码和解码,处理中文和特殊字符",
"longDescription": "URL 编码解码工具可以正确处理中文字符和特殊字符,将它们转换为 URL 安全格式,支持双向转换。",
"icon": "🔗",
"color": "#06b6d4",
"entry": "tools/url-encode/app.html",
"detail": "tools/url-encode/index.html",
"createdAt": "2025-12-22",
"updatedAt": "2025-12-22",
"featured": false,
"repo": "https://github.com/justhtmls/html-tools"
},
{
"id": "qr-generator",
"name": "二维码生成器",
"slug": "qr-generator",
"category": "utility",
"tags": [
"qrcode",
"generator",
"utility"
],
"author": "JustHTMLs",
"authorUrl": "https://github.com/justhtmls",
"version": "1.0.0",
"description": "快速生成二维码,支持自定义颜色和尺寸",
"longDescription": "二维码生成器可以将文本、网址等内容快速转换为二维码图片,支持多种尺寸和颜色自定义,生成的二维码可直接下载使用。",
"icon": "📱",
"color": "#10b981",
"entry": "tools/qr-generator/app.html",
"detail": "tools/qr-generator/index.html",
"createdAt": "2025-12-22",
"updatedAt": "2025-12-22",
"featured": true,
"repo": "https://github.com/justhtmls/html-tools"
},
{
"id": "password-generator",
"name": "安全密码生成器",
"slug": "password-generator",
"category": "utility",
"tags": [
"password",
"security",
"generator",
"utility"
],
"author": "JustHTMLs",
"authorUrl": "https://github.com/justhtmls",
"version": "1.0.0",
"description": "创建强大且安全的随机密码,保护您的账户安全",
"longDescription": "安全密码生成器使用密码学安全的随机数生成器创建强密码,支持自定义密码长度、字符类型,并提供密码强度评估。",
"icon": "🔐",
"color": "#667eea",
"entry": "tools/password-generator/app.html",
"detail": "tools/password-generator/index.html",
"createdAt": "2025-12-22",
"updatedAt": "2025-12-22",
"featured": true,
"repo": "https://github.com/justhtmls/html-tools"
},
{
"id": "uuid-generator",
"name": "UUID 生成器",
"slug": "uuid-generator",
"category": "developer",
"tags": [
"uuid",
"generator",
"developer",
"identifier"
],
"author": "JustHTMLs",
"authorUrl": "https://github.com/justhtmls",
"version": "1.0.0",
"description": "快速生成各种版本的 UUID",
"longDescription": "UUID 生成器可以快速生成 UUID v4(随机)和 UUID v1(基于时间戳),支持多种输出格式,批量生成,是开发者生成唯一标识的必备工具。",
"icon": "🆔",
"color": "#667eea",
"entry": "tools/uuid-generator/app.html",
"detail": "tools/uuid-generator/index.html",
"createdAt": "2025-12-23",
"updatedAt": "2025-12-23",
"featured": true,
"repo": "https://github.com/justhtmls/html-tools"
},
{
"id": "word-counter",
"name": "字数统计工具",
"slug": "word-counter",
"category": "text",
"tags": [
"text",
"counter",
"word",
"characters"
],
"author": "JustHTMLs",
"authorUrl": "https://github.com/justhtmls",
"version": "1.0.0",
"description": "实时统计文本的字数、词数、行数等信息",
"longDescription": "字数统计工具可以实时分析中英文混合文本的各种统计数据,包括字符数、词数、行数、段落数等,支持分类统计和阅读时间计算。",
"icon": "📊",
"color": "#11998e",
"entry": "tools/word-counter/app.html",
"detail": "tools/word-counter/index.html",
"createdAt": "2025-12-23",
"updatedAt": "2025-12-23",
"featured": true,
"repo": "https://github.com/justhtmls/html-tools"
},
{
"id": "timestamp-converter",
"name": "Unix 时间戳转换",
"slug": "timestamp-converter",
"category": "converter",
"tags": [
"timestamp",
"unix",
"datetime",
"converter"
],
"author": "JustHTMLs",
"authorUrl": "https://github.com/justhtmls",
"version": "1.0.0",
"description": "时间戳与日期时间格式互相转换",
"longDescription": "Unix 时间戳转换工具支持时间戳与日期时间格式互相转换,支持秒和毫秒两种格式,实时显示当前时间戳,显示相对时间。",
"icon": "⏰",
"color": "#f5576c",
"entry": "tools/timestamp-converter/app.html",
"detail": "tools/timestamp-converter/index.html",
"createdAt": "2025-12-23",
"updatedAt": "2025-12-23",
"featured": true,
"repo": "https://github.com/justhtmls/html-tools"
},
{
"id": "base-converter",
"name": "进制转换工具",
"slug": "base-converter",
"category": "converter",
"tags": [
"base",
"converter",
"binary",
"hexadecimal",
"octal"
],
"author": "JustHTMLs",
"authorUrl": "https://github.com/justhtmls",
"version": "1.0.0",
"description": "支持二进制、八进制、十进制、十六进制互相转换",
"longDescription": "进制转换工具支持 2、8、10、16 进制互相转换,实时输入即时转换,支持进制前缀,是程序员进行进制计算和学习计算机科学的必备工具。",
"icon": "🔢",
"color": "#4facfe",
"entry": "tools/base-converter/app.html",
"detail": "tools/base-converter/index.html",
"createdAt": "2025-12-23",
"updatedAt": "2025-12-23",
"featured": true,
"repo": "https://github.com/justhtmls/html-tools"
},
{
"id": "text-diff",
"name": "文本对比工具",
"slug": "text-diff",
"category": "text",
"tags": [
"text",
"diff",
"compare",
"difference"
],
"author": "JustHTMLs",
"authorUrl": "https://github.com/justhtmls",
"version": "1.0.0",
"description": "比较两段文本的差异,支持逐行对比",
"longDescription": "文本对比工具可以快速比较两段文本之间的差异,高亮显示新增、删除和未修改的行,支持逐行显示和并排显示两种模式。",
"icon": "🔍",
"color": "#fa709a",
"entry": "tools/text-diff/app.html",
"detail": "tools/text-diff/index.html",
"createdAt": "2025-12-23",
"updatedAt": "2025-12-23",
"featured": true,
"repo": "https://github.com/justhtmls/html-tools"
},
{
"id": "jwt-decoder",
"name": "JWT 解码器",
"slug": "jwt-decoder",
"category": "developer",
"tags": [
"jwt",
"decoder",
"json",
"token",
"authentication"
],
"author": "JustHTMLs",
"authorUrl": "https://github.com/justhtmls",
"version": "1.0.0",
"description": "解码和验证 JSON Web Token",
"longDescription": "JWT 解码器可以解码 JSON Web Token 并查看其内容,包括 Header、Payload 和 Signature 三部分,检查 Token 过期时间,是调试 API 认证的必备工具。",
"icon": "🔑",
"color": "#764ba2",
"entry": "tools/jwt-decoder/app.html",
"detail": "tools/jwt-decoder/index.html",
"createdAt": "2025-12-23",
"updatedAt": "2025-12-23",
"featured": true,
"repo": "https://github.com/justhtmls/html-tools"
},
{
"id": "image-to-base64",
"name": "图片转 Base64",
"slug": "image-to-base64",
"category": "image",
"tags": [
"image",
"base64",
"converter",
"encoding"
],
"author": "JustHTMLs",
"authorUrl": "https://github.com/justhtmls",
"version": "1.0.0",
"description": "将图片转换为 Base64 编码字符串",
"longDescription": "图片转 Base64 工具可以将图片文件转换为 Base64 编码的字符串,支持拖拽上传,显示图片预览和信息,输出 Data URI 或纯 Base64 字符串。",
"icon": "🖼️",
"color": "#ff9a9e",
"entry": "tools/image-to-base64/app.html",
"detail": "tools/image-to-base64/index.html",
"createdAt": "2025-12-23",
"updatedAt": "2025-12-23",
"featured": true,
"repo": "https://github.com/justhtmls/html-tools"
},
{
"id": "xml-to-json",
"name": "XML 转 JSON",
"slug": "xml-to-json",
"category": "converter",
"tags": [
"xml",
"json",
"converter",
"format"
],
"author": "JustHTMLs",
"authorUrl": "https://github.com/justhtmls",
"version": "1.0.0",
"description": "将 XML 格式转换为 JSON 格式",
"longDescription": "XML 转 JSON 工具可以在 XML 和 JSON 两种数据格式之间进行转换,支持自动转换、格式化输出、保留属性等功能,是处理数据格式的必备工具。",
"icon": "🔄",
"color": "#a8edea",
"entry": "tools/xml-to-json/app.html",
"detail": "tools/xml-to-json/index.html",
"createdAt": "2025-12-23",
"updatedAt": "2025-12-23",
"featured": true,
"repo": "https://github.com/justhtmls/html-tools"
},
{
"id": "markdown-to-html",
"name": "Markdown 转 HTML",
"slug": "markdown-to-html",
"category": "text",
"tags": [
"markdown",
"html",
"converter",
"editor"
],
"author": "JustHTMLs",
"authorUrl": "https://github.com/justhtmls",
"version": "1.0.0",
"description": "实时将 Markdown 转换为 HTML 并预览",
"longDescription": "Markdown 转 HTML 工具可以实时将 Markdown 格式的文本转换为 HTML,支持常用 Markdown 语法,包括标题、列表、代码块、链接、图片等,支持复制和下载 HTML。",
"icon": "📝",
"color": "#30cfd0",
"entry": "tools/markdown-to-html/app.html",
"detail": "tools/markdown-to-html/index.html",
"createdAt": "2025-12-23",
"updatedAt": "2025-12-23",
"featured": true,
"repo": "https://github.com/justhtmls/html-tools"
},
{
"id": "hash-generator",
"name": "哈希生成器",
"slug": "hash-generator",
"category": "developer",
"tags": [
"hash",
"md5",
"sha",
"crypto",
"security"
],
"author": "JustHTMLs",
"authorUrl": "https://github.com/justhtmls",
"version": "1.0.0",
"description": "计算文本的 MD5、SHA-1、SHA-256 等哈希值",
"longDescription": "哈希生成器可以计算任意文本的多种哈希值,包括 MD5、SHA-1、SHA-256、SHA-384、SHA-512 以及 Base64 编码。使用浏览器原生 Web Crypto API,完全在本地运行。",
"icon": "🔐",
"color": "#764ba2",
"entry": "tools/hash-generator/app.html",
"detail": "tools/hash-generator/index.html",
"createdAt": "2025-12-23",
"updatedAt": "2025-12-23",
"featured": true,
"repo": "https://github.com/justhtmls/html-tools"
},
{
"id": "html-entity",
"name": "HTML 实体编码/解码",
"slug": "html-entity",
"category": "converter",
"tags": [
"html",
"entity",
"encode",
"decode"
],
"author": "JustHTMLs",
"authorUrl": "https://github.com/justhtmls",
"version": "1.0.0",
"description": "将 HTML 特殊字符转换为实体编码或反向转换",
"longDescription": "HTML 实体编码/解码工具可以帮助你在 HTML 特殊字符和实体编码之间进行转换。支持常用符号、货币符号、数学符号等。",
"icon": "🔤",
"color": "#f5576c",
"entry": "tools/html-entity/app.html",
"detail": "tools/html-entity/index.html",
"createdAt": "2025-12-23",
"updatedAt": "2025-12-23",
"featured": true,
"repo": "https://github.com/justhtmls/html-tools"
},
{
"id": "case-converter",
"name": "大小写转换工具",
"slug": "case-converter",
"category": "text",
"tags": [
"text",
"case",
"converter",
"format"
],
"author": "JustHTMLs",
"authorUrl": "https://github.com/justhtmls",
"version": "1.0.0",
"description": "在各种命名格式之间转换文本",
"longDescription": "大小写转换工具可以帮助你在各种文本格式之间进行转换,包括大小写转换和各种编程命名格式(camelCase、PascalCase、snake_case、kebab-case 等)。",
"icon": "🔠",
"color": "#4facfe",
"entry": "tools/case-converter/app.html",
"detail": "tools/case-converter/index.html",
"createdAt": "2025-12-23",
"updatedAt": "2025-12-23",
"featured": true,
"repo": "https://github.com/justhtmls/html-tools"
},
{
"id": "css-minifier",
"name": "CSS 压缩/格式化工具",
"slug": "css-minifier",
"category": "developer",
"tags": [
"css",
"minifier",
"beautifier",
"formatter"
],
"author": "JustHTMLs",
"authorUrl": "https://github.com/justhtmls",
"version": "1.0.0",
"description": "压缩和美化 CSS 代码",
"longDescription": "CSS 压缩/格式化工具可以帮助你优化 CSS 代码。压缩模式可以减少文件大小,提高加载速度;格式化模式可以让代码更易读。显示压缩前后大小对比。",
"icon": "🎨",
"color": "#330867",
"entry": "tools/css-minifier/app.html",
"detail": "tools/css-minifier/index.html",
"createdAt": "2025-12-23",
"updatedAt": "2025-12-23",
"featured": true,
"repo": "https://github.com/justhtmls/html-tools"
},
{
"id": "cron-generator",
"name": "Cron 表达式生成器",
"slug": "cron-generator",
"category": "developer",
"tags": [
"cron",
"scheduler",
"expression",
"generator"
],
"author": "JustHTMLs",
"authorUrl": "https://github.com/justhtmls",
"version": "1.0.0",
"description": "可视化和生成 Cron 定时任务表达式",
"longDescription": "Cron 表达式生成器可以帮助你通过可视化界面创建和理解 Cron 定时任务表达式。支持预设模板(每小时、每天、每周等)和自定义配置。",
"icon": "⏰",
"color": "#764ba2",
"entry": "tools/cron-generator/app.html",
"detail": "tools/cron-generator/index.html",
"createdAt": "2025-12-23",
"updatedAt": "2025-12-23",
"featured": true,
"repo": "https://github.com/justhtmls/html-tools"
},
{
"id": "percentage-calculator",
"name": "百分比计算器",
"slug": "percentage-calculator",
"category": "utility",
"tags": [
"calculator",
"percentage",
"math",
"utility"
],
"author": "JustHTMLs",
"authorUrl": "https://github.com/justhtmls",
"version": "1.0.0",
"description": "快速计算百分比相关问题",
"longDescription": "百分比计算器可以帮助你快速解决各种百分比计算问题,包括求百分比值、计算占比、百分比增减、百分比差异等。",
"icon": "📊",
"color": "#fcb69f",
"entry": "tools/percentage-calculator/app.html",
"detail": "tools/percentage-calculator/index.html",
"createdAt": "2025-12-23",
"updatedAt": "2025-12-23",
"featured": true,
"repo": "https://github.com/justhtmls/html-tools"
},
{
"id": "lorem-ipsum",
"name": "Lorem Ipsum 生成器",
"slug": "lorem-ipsum",
"category": "text",
"tags": [
"lorem",
"ipsum",
"placeholder",
"generator"
],
"author": "JustHTMLs",
"authorUrl": "https://github.com/justhtmls",
"version": "1.0.0",
"description": "生成占位文本用于设计和测试",
"longDescription": "Lorem Ipsum 生成器可以生成经典的占位文本,用于网页设计、排版测试和原型制作。支持生成段落、句子和单词,显示字数和字符统计。",
"icon": "📄",
"color": "#fa709a",
"entry": "tools/lorem-ipsum/app.html",
"detail": "tools/lorem-ipsum/index.html",
"createdAt": "2025-12-23",
"updatedAt": "2025-12-23",
"featured": true,
"repo": "https://github.com/justhtmls/html-tools"
},
{
"id": "yaml-validator",
"name": "YAML 验证器",
"slug": "yaml-validator",
"category": "converter",
"tags": [
"yaml",
"validator",
"json",
"converter"
],
"author": "JustHTMLs",
"authorUrl": "https://github.com/justhtmls",
"version": "1.0.0",
"description": "验证 YAML 语法并转换为 JSON",
"longDescription": "YAML 验证器可以帮助你验证 YAML 语法是否正确,并将其转换为 JSON 格式以便查看。支持常见 YAML 数据类型。",
"icon": "✅",
"color": "#11998e",
"entry": "tools/yaml-validator/app.html",
"detail": "tools/yaml-validator/index.html",
"createdAt": "2025-12-23",
"updatedAt": "2025-12-23",
"featured": true,
"repo": "https://github.com/justhtmls/html-tools"
},
{
"id": "slug-generator",
"name": "URL Slug 生成器",
"slug": "slug-generator",
"category": "text",
"tags": [
"slug",
"url",
"generator",
"seo"
],
"author": "JustHTMLs",
"authorUrl": "https://github.com/justhtmls",
"version": "1.0.0",
"description": "将标题或文本转换为 URL 友好的 slug",
"longDescription": "URL Slug 生成器可以将标题或文本转换为 URL 友好的格式,用于创建美观且 SEO 友好的网址。支持连字符和下划线分隔符、可选小写转换、移除停用词等。",
"icon": "🔗",
"color": "#a8edea",
"entry": "tools/slug-generator/app.html",
"detail": "tools/slug-generator/index.html",
"createdAt": "2025-12-23",
"updatedAt": "2025-12-23",
"featured": true,
"repo": "https://github.com/justhtmls/html-tools"
},
{
"id": "text-deduplicator",
"name": "文本去重工具",
"slug": "text-deduplicator",
"category": "text",
"tags": [
"text",
"dedupe",
"cleanup",
"list"
],
"author": "JustHTMLs",
"authorUrl": "https://github.com/justhtmls",
"version": "1.0.0",
"description": "按行去重并保留原始顺序",
"longDescription": "文本去重工具支持按行去重、忽略大小写和移除空行,适合清理清单和名单。",
"icon": "🧹",
"color": "#10b981",
"entry": "tools/text-deduplicator/app.html",
"detail": "tools/text-deduplicator/index.html",
"createdAt": "2025-12-23",
"updatedAt": "2025-12-23",
"featured": true,
"repo": "https://github.com/justhtmls/html-tools"
},
{
"id": "text-sorter",
"name": "文本排序工具",
"slug": "text-sorter",
"category": "text",
"tags": [
"text",
"sorter",
"list",
"utility"
],
"author": "JustHTMLs",
"authorUrl": "https://github.com/justhtmls",
"version": "1.0.0",
"description": "按行排序文本,支持数字排序",
"longDescription": "文本排序工具支持升序/降序、数字排序和去重,适合整理清单和列表。",
"icon": "📑",
"color": "#f59e0b",
"entry": "tools/text-sorter/app.html",
"detail": "tools/text-sorter/index.html",
"createdAt": "2025-12-23",
"updatedAt": "2025-12-23",
"featured": true,
"repo": "https://github.com/justhtmls/html-tools"
},
{
"id": "line-numberer",
"name": "行号添加器",
"slug": "line-numberer",
"category": "text",
"tags": [
"text",
"line",
"number",
"editor"
],
"author": "JustHTMLs",
"authorUrl": "https://github.com/justhtmls",
"version": "1.0.0",
"description": "为文本自动添加行号",
"longDescription": "行号添加器可自定义起始值、步进和分隔符,适合代码与清单。",
"icon": "🔢",
"color": "#3b82f6",
"entry": "tools/line-numberer/app.html",
"detail": "tools/line-numberer/index.html",
"createdAt": "2025-12-23",
"updatedAt": "2025-12-23",
"featured": true,
"repo": "https://github.com/justhtmls/html-tools"
},
{
"id": "text-cleaner",
"name": "文本清理器",
"slug": "text-cleaner",
"category": "text",
"tags": [
"text",
"cleaner",
"format",
"utility"
],
"author": "JustHTMLs",
"authorUrl": "https://github.com/justhtmls",
"version": "1.0.0",
"description": "清理文本中的空格与空行",
"longDescription": "文本清理器支持合并空格、删除空行并规范换行格式。",
"icon": "🧽",
"color": "#14b8a6",
"entry": "tools/text-cleaner/app.html",
"detail": "tools/text-cleaner/index.html",
"createdAt": "2025-12-23",
"updatedAt": "2025-12-23",
"featured": true,
"repo": "https://github.com/justhtmls/html-tools"
},
{
"id": "csv-to-json",
"name": "CSV 转 JSON",
"slug": "csv-to-json",
"category": "converter",
"tags": [
"csv",
"json",
"converter",
"table"
],
"author": "JustHTMLs",
"authorUrl": "https://github.com/justhtmls",
"version": "1.0.0",
"description": "将 CSV 表格转换为 JSON",
"longDescription": "CSV 转 JSON 工具支持表头解析、分隔符设置和引号字段。",
"icon": "📄",
"color": "#6366f1",
"entry": "tools/csv-to-json/app.html",
"detail": "tools/csv-to-json/index.html",
"createdAt": "2025-12-23",
"updatedAt": "2025-12-23",
"featured": true,
"repo": "https://github.com/justhtmls/html-tools"
},
{
"id": "json-to-csv",
"name": "JSON 转 CSV",
"slug": "json-to-csv",
"category": "converter",
"tags": [
"json",
"csv",
"converter",
"export"
],
"author": "JustHTMLs",
"authorUrl": "https://github.com/justhtmls",
"version": "1.0.0",
"description": "将 JSON 数组导出为 CSV",
"longDescription": "JSON 转 CSV 工具可自动生成表头并处理引号转义。",
"icon": "🧾",
"color": "#ec4899",
"entry": "tools/json-to-csv/app.html",
"detail": "tools/json-to-csv/index.html",
"createdAt": "2025-12-23",
"updatedAt": "2025-12-23",
"featured": true,
"repo": "https://github.com/justhtmls/html-tools"
},
{
"id": "url-parser",
"name": "URL 解析器",
"slug": "url-parser",
"category": "developer",
"tags": [
"url",
"parser",
"developer",
"web"
],
"author": "JustHTMLs",
"authorUrl": "https://github.com/justhtmls",
"version": "1.0.0",
"description": "解析 URL 的各个组成部分",
"longDescription": "URL 解析器可拆分协议、域名、路径、参数和锚点。",
"icon": "🌐",
"color": "#0ea5e9",
"entry": "tools/url-parser/app.html",
"detail": "tools/url-parser/index.html",
"createdAt": "2025-12-23",
"updatedAt": "2025-12-23",
"featured": true,
"repo": "https://github.com/justhtmls/html-tools"
},
{
"id": "contrast-checker",
"name": "颜色对比度检测",
"slug": "contrast-checker",
"category": "developer",
"tags": [
"color",
"contrast",
"accessibility",
"design"
],
"author": "JustHTMLs",
"authorUrl": "https://github.com/justhtmls",
"version": "1.0.0",
"description": "检测前景与背景颜色对比度",
"longDescription": "颜色对比度检测基于 WCAG 标准并给出 AA/AAA 结果。",
"icon": "🌓",
"color": "#8b5cf6",
"entry": "tools/contrast-checker/app.html",
"detail": "tools/contrast-checker/index.html",
"createdAt": "2025-12-23",
"updatedAt": "2025-12-23",
"featured": true,
"repo": "https://github.com/justhtmls/html-tools"
},
{
"id": "password-strength",
"name": "密码强度检测",
"slug": "password-strength",
"category": "utility",
"tags": [
"password",
"security",
"checker",
"utility"
],
"author": "JustHTMLs",
"authorUrl": "https://github.com/justhtmls",
"version": "1.0.0",
"description": "检测密码强度和安全性",
"longDescription": "密码强度检测统计长度与字符类型并给出改进建议。",
"icon": "🛡️",
"color": "#ef4444",
"entry": "tools/password-strength/app.html",
"detail": "tools/password-strength/index.html",
"createdAt": "2025-12-23",
"updatedAt": "2025-12-23",
"featured": true,
"repo": "https://github.com/justhtmls/html-tools"
},
{
"id": "date-diff",
"name": "日期差值计算器",
"slug": "date-diff",
"category": "utility",
"tags": [
"date",
"time",
"calculator",
"utility"
],
"author": "JustHTMLs",
"authorUrl": "https://github.com/justhtmls",
"version": "1.0.0",
"description": "计算两个日期之间的差值",
"longDescription": "日期差值计算器输出天、小时、分钟和秒等多维度结果。",
"icon": "📆",
"color": "#22c55e",
"entry": "tools/date-diff/app.html",
"detail": "tools/date-diff/index.html",
"createdAt": "2025-12-23",
"updatedAt": "2025-12-23",
"featured": true,
"repo": "https://github.com/justhtmls/html-tools"
},
{
"id": "js-formatter",
"name": "JavaScript 格式化工具",
"slug": "js-formatter",
"category": "developer",
"tags": [
"javascript",
"formatter",
"beautifier",
"developer"
],
"author": "JustHTMLs",
"authorUrl": "https://github.com/justhtmls",
"version": "1.0.0",
"description": "美化 JavaScript 代码并提升可读性",
"longDescription": "JavaScript 格式化工具可以帮助你把凌乱的 JS 代码重新排版,支持常见缩进设置,方便阅读与分享。",
"icon": "🧩",
"color": "#f59e0b",
"entry": "tools/js-formatter/app.html",
"detail": "tools/js-formatter/index.html",
"createdAt": "2025-12-23",
"updatedAt": "2025-12-23",
"featured": false,
"repo": "https://github.com/justhtmls/html-tools"
},
{
"id": "html-formatter",
"name": "HTML 格式化工具",
"slug": "html-formatter",
"category": "developer",
"tags": [
"html",
"formatter",
"beautifier",
"developer"
],
"author": "JustHTMLs",
"authorUrl": "https://github.com/justhtmls",
"version": "1.0.0",
"description": "整理 HTML 结构并自动缩进",
"longDescription": "HTML 格式化工具支持对 HTML 片段进行自动缩进与换行,让结构更加清晰易读。",
"icon": "🧱",
"color": "#ef4444",
"entry": "tools/html-formatter/app.html",
"detail": "tools/html-formatter/index.html",
"createdAt": "2025-12-23",
"updatedAt": "2025-12-23",
"featured": false,
"repo": "https://github.com/justhtmls/html-tools"
},
{
"id": "sql-formatter",
"name": "SQL 格式化工具",
"slug": "sql-formatter",
"category": "developer",
"tags": [
"sql",
"formatter",
"database",
"developer"
],
"author": "JustHTMLs",
"authorUrl": "https://github.com/justhtmls",
"version": "1.0.0",
"description": "格式化 SQL 语句,提升可读性",
"longDescription": "SQL 格式化工具可以将复杂的 SQL 查询语句自动排版,突出关键字与层级结构。",
"icon": "🗄️",
"color": "#10b981",
"entry": "tools/sql-formatter/app.html",
"detail": "tools/sql-formatter/index.html",