-
-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathtools.json
More file actions
8267 lines (8267 loc) · 266 KB
/
tools.json
File metadata and controls
8267 lines (8267 loc) · 266 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
{
"categories": {
"dev": {
"name": "开发工具",
"icon": "⚡",
"color": "cyan"
},
"text": {
"name": "文本工具",
"icon": "📝",
"color": "yellow"
},
"time": {
"name": "时间工具",
"icon": "⏰",
"color": "magenta"
},
"generator": {
"name": "生成器",
"icon": "🎲",
"color": "purple"
},
"media": {
"name": "媒体工具",
"icon": "🖼️",
"color": "blue"
},
"privacy": {
"name": "隐私安全",
"icon": "🔒",
"color": "green"
},
"security": {
"name": "安全工具",
"icon": "🛡️",
"color": "red"
},
"network": {
"name": "网络工具",
"icon": "🌐",
"color": "cyan"
},
"calculator": {
"name": "计算器",
"icon": "🔢",
"color": "yellow"
},
"converter": {
"name": "转换器",
"icon": "🔄",
"color": "purple"
},
"extractor": {
"name": "提取器",
"icon": "📤",
"color": "blue"
},
"ai": {
"name": "AI 工具",
"icon": "🤖",
"color": "magenta"
},
"seo": {
"name": "SEO 工具",
"icon": "📈",
"color": "green"
},
"fun": {
"name": "趣味工具",
"icon": "🎯",
"color": "orange"
},
"game": {
"name": "小游戏",
"icon": "🎮",
"color": "purple"
},
"life": {
"name": "生活工具",
"icon": "🏠",
"color": "green"
},
"finance": {
"name": "财务工具",
"icon": "💰",
"color": "green"
},
"health": {
"name": "医疗健康",
"icon": "⚕️",
"color": "red"
},
"education": {
"name": "教育学习",
"icon": "📚",
"color": "blue"
},
"food": {
"name": "餐饮食品",
"icon": "🍳",
"color": "orange"
},
"chinese": {
"name": "中文工具",
"icon": "中",
"color": "red"
},
"ai-coding": {
"name": "AI 编程",
"icon": "🤖",
"color": "purple"
},
"realestate": {
"name": "房产工具",
"icon": "🏠",
"color": "blue"
},
"business": {
"name": "商业工具",
"icon": "💼",
"color": "cyan"
},
"crypto": {
"name": "加密货币",
"icon": "₿",
"color": "orange"
},
"legal": {
"name": "法律合规",
"icon": "⚖️",
"color": "purple"
},
"social-media": {
"name": "社交媒体",
"icon": "📱",
"color": "pink"
},
"team-tools": {
"name": "团队协作",
"icon": "👥",
"color": "teal"
},
"data": {
"name": "数据工具",
"icon": "📊",
"color": "blue"
},
"office": {
"name": "办公效率",
"icon": "📊",
"color": "blue"
},
"travel": {
"name": "旅行工具",
"icon": "✈️",
"color": "cyan"
},
"design": {
"name": "设计工具",
"icon": "🎨",
"color": "pink",
"description": "CSS 设计、UI 效果生成器"
},
"math": {
"name": "数学工具",
"icon": "🔢",
"description": "数学计算、方程求解、进制转换",
"color": "blue"
},
"productivity": {
"name": "效率工具",
"icon": "🎯",
"description": "提升工作效率的实用工具",
"color": "cyan"
},
"sports": {
"name": "运动健身",
"icon": "⚽",
"color": "green"
},
"music": {
"name": "音乐工具",
"icon": "🎵",
"color": "purple"
},
"pets": {
"name": "宠物工具",
"icon": "🐾",
"color": "orange"
},
"photography": {
"name": "摄影工具",
"icon": "📷",
"color": "magenta"
},
"shopping": {
"name": "购物工具",
"icon": "🛒",
"color": "green"
},
"language": {
"name": "语言学习",
"icon": "🗣️",
"color": "blue"
},
"art": {
"name": "艺术工具",
"icon": "🎨",
"color": "purple"
},
"social": {
"name": "社交娱乐",
"icon": "🎉",
"color": "pink"
},
"parenting": {
"name": "育儿工具",
"icon": "👶",
"color": "pink"
},
"diy": {
"name": "DIY工具",
"icon": "🔨",
"color": "orange"
},
"weather": {
"name": "天气工具",
"icon": "☁️",
"color": "blue"
},
"astronomy": {
"name": "天文工具",
"icon": "🌙",
"color": "purple"
},
"automotive": {
"name": "汽车工具",
"icon": "🚗",
"color": "cyan"
},
"gardening": {
"name": "园艺工具",
"icon": "🌻",
"color": "green"
},
"fitness": {
"name": "健身运动",
"icon": "💪",
"color": "red"
},
"lifestyle": {
"name": "生活工具",
"icon": "🏠",
"color": "green"
}
},
"tools": {
"1": {
"path": "tools/ai-coding/index.html",
"name": "AI Coding 资源导航",
"category": "ai-coding",
"keywords": "ai coding 资源导航",
"icon": "🔧",
"description": "AI Coding 资源导航"
},
"2": {
"path": "tools/ai-coding/wiki/ai-ide.html",
"name": "AI IDE 环境指南",
"category": "ai-coding",
"keywords": "ai ide 环境指南",
"icon": "🔧",
"description": "AI IDE 环境指南"
},
"3": {
"path": "tools/ai-coding/wiki/claude-skills.html",
"name": "Claude Skills 指南",
"category": "ai-coding",
"keywords": "claude skills 指南",
"icon": "🔧",
"description": "Claude Skills 指南"
},
"4": {
"path": "tools/ai-coding/wiki/cursor-rules.html",
"name": "Cursor Rules 指南",
"category": "ai-coding",
"keywords": "cursor rules 指南",
"icon": "🔧",
"description": "Cursor Rules 指南"
},
"5": {
"path": "tools/ai-coding/wiki/mcp-servers.html",
"name": "MCP Servers 指南",
"category": "ai-coding",
"keywords": "mcp servers 指南",
"icon": "🔧",
"description": "MCP Servers 指南"
},
"6": {
"path": "tools/ai/agi-2026-outlook.html",
"name": "AGI 2026 展望",
"category": "ai",
"keywords": "agi 通用人工智能 2026 openai anthropic 超级智能 预测",
"icon": "🔮",
"description": "AGI 2026展望:OpenAI/Anthropic/马斯克预测,超级智能时代"
},
"7": {
"path": "tools/ai/ai-agent-2025-guide.html",
"name": "AI Agent 2025 年度指南",
"category": "ai",
"keywords": "ai agent operator jarvis copilot 智能体 自主ai 2025",
"icon": "🤖",
"description": "2025 AI Agent商业化元年:OpenAI Operator、Google Jarvis、Copilot全解析"
},
"8": {
"path": "tools/ai/ai-agent-guide.html",
"name": "AI Agent 入门指南",
"category": "ai",
"icon": "🤖",
"description": "AI Agent 2024 入门指南,涵盖主流框架、应用场景和发展趋势",
"keywords": "ai agent 智能体 autogpt langchain dify"
},
"9": {
"path": "tools/ai/ai-coding-tools-2025.html",
"name": "AI 编程工具 2025",
"category": "ai",
"description": "2025 年 AI 编程工具全面对比:Cursor、Windsurf、Claude Code、Copilot",
"icon": "💻",
"keywords": "ai编程 cursor windsurf claude code copilot 2025"
},
"10": {
"path": "tools/ai/ai-coding-tools.html",
"name": "AI 编程工具对比",
"category": "ai",
"icon": "🤖",
"description": "Cursor vs Windsurf vs Cline vs Copilot 对比,AI 编程工具选择指南",
"keywords": "cursor windsurf cline copilot ai编程"
},
"11": {
"path": "tools/ai/ai-image-generation-2025.html",
"name": "AI 图像生成工具大全",
"category": "ai",
"keywords": "ai 图像生成 flux midjourney stable diffusion dall-e ideogram 可灵 通义万相",
"icon": "🎨",
"description": "2025年AI图像生成完整指南:Flux vs Midjourney vs SD对比"
},
"12": {
"path": "tools/ai/ai-models.html",
"name": "AI 模型对比表",
"category": "ai",
"keywords": "ai 模型对比表",
"icon": "🤖",
"description": "AI 模型对比表"
},
"13": {
"path": "tools/ai/ai-pricing.html",
"name": "AI API 价格计算器",
"category": "ai",
"keywords": "ai api 价格计算器",
"icon": "💰",
"description": "AI API 价格计算器"
},
"14": {
"path": "tools/ai/ai-video-generation-2025.html",
"name": "AI 视频生成对比 2025",
"category": "ai",
"description": "可灵2.0/Runway Gen-4.5/Sora Turbo/海螺AI/Vidu 2.0 全面对比",
"icon": "🎬",
"keywords": "ai视频 可灵 runway sora 海螺 vidu 视频生成 文生视频 2025"
},
"15": {
"path": "tools/ai/china-llm-2025.html",
"name": "国产大模型 2025",
"category": "ai",
"icon": "🤖",
"description": "2025年12月国产大模型最新:GLM-4.7、MiniMax M2.1、DeepSeek、Qwen",
"keywords": "glm-4.7 minimax m2.1 deepseek qwen 智谱 国产大模型"
},
"16": {
"path": "tools/ai/claude-4-guide.html",
"name": "Claude 4 使用指南",
"category": "ai",
"description": "Anthropic Claude 4 系列完整指南:Opus 4.5、Sonnet 4.5",
"icon": "🤖",
"keywords": "claude 4 opus sonnet anthropic ai"
},
"17": {
"path": "tools/ai/claude-code-ecosystem.html",
"name": "Claude Code 生态大全",
"category": "ai",
"icon": "🤖",
"description": "Claude Code 生态系统完整指南:MCP Servers、Skills、插件市场",
"keywords": "claude code mcp skills 插件 servers"
},
"18": {
"path": "tools/ai/claude-skills.html",
"name": "Claude Skills 精选",
"category": "ai",
"keywords": "claude skills anthropic 技能 plugin 插件 pdf xlsx docx pptx",
"icon": "✨",
"description": "Anthropic 官方 Skills 集合,提升 Claude 特定任务表现"
},
"19": {
"path": "tools/ai/cursor-shortcuts.html",
"name": "Cursor 快捷键速查",
"category": "ai",
"keywords": "cursor 快捷键速查",
"icon": "🔧",
"description": "Cursor 快捷键速查"
},
"20": {
"path": "tools/ai/deepseek-guide.html",
"name": "DeepSeek API 使用指南 | 在线工具",
"category": "ai",
"keywords": "deepseek api 使用指南 | 在线工具",
"icon": "🔧",
"description": "DeepSeek API 使用指南 | 在线工具"
},
"21": {
"path": "tools/ai/deepseek-v3-guide.html",
"name": "DeepSeek V3 完整指南",
"category": "ai",
"keywords": "deepseek v3 开源 moe 大模型 中国ai 幻方量化 2025",
"icon": "🐋",
"description": "DeepSeek V3 最新版:6850亿参数MoE架构,557万美元训练成本,MIT开源"
},
"22": {
"path": "tools/ai/doubao-1.8-guide.html",
"name": "豆包 1.8 使用指南",
"category": "ai",
"description": "字节跳动豆包 1.8 大模型使用指南",
"icon": "🫘",
"keywords": "豆包 doubao 字节跳动 bytedance 大模型"
},
"23": {
"path": "tools/ai/gemini-2.5-pro-guide.html",
"name": "Gemini 2.5 Pro 指南",
"category": "ai",
"keywords": "gemini 2.5 pro google 思考模型 推理 多模态 lmarena 2025",
"icon": "💎",
"description": "Google最智能AI模型:首个思考模型,100万token上下文,LMArena第一"
},
"24": {
"path": "tools/ai/gemini3-guide.html",
"name": "Gemini 3 使用指南",
"category": "ai",
"icon": "🤖",
"description": "Google Gemini 3 完整指南:Pro/Flash 版本,万亿参数,100万token上下文",
"keywords": "gemini 3 gemini 3 pro gemini 3 flash google 谷歌 deep research"
},
"25": {
"path": "tools/ai/gpt5-guide.html",
"name": "GPT-5 完整指南",
"category": "ai",
"icon": "🤖",
"description": "OpenAI GPT-5 系列指南:GPT-5.2 三版本策略、Instant/Thinking/Pro 详解",
"keywords": "gpt-5 gpt5 openai chatgpt gpt-5.2 大语言模型"
},
"26": {
"path": "tools/ai/grok4-guide.html",
"name": "Grok 4 使用指南",
"category": "ai",
"icon": "🤖",
"description": "xAI Grok 4 完整指南:Grok 4 Heavy AIME满分,博士级AI,年费3000美元",
"keywords": "grok 4 grok 4 heavy xai 马斯克 elon musk aime"
},
"27": {
"path": "tools/ai/humanoid-robots-2025.html",
"name": "人形机器人 2025",
"category": "ai",
"description": "2025 年人形机器人发展综述:特斯拉 Optimus、Figure、波士顿动力",
"icon": "🤖",
"keywords": "人形机器人 optimus figure boston dynamics 2025"
},
"28": {
"path": "tools/ai/kimi-k2-guide.html",
"name": "Kimi K2 完整指南",
"category": "ai",
"keywords": "kimi k2 月之暗面 moonshot 开源 moe agent 万亿参数",
"icon": "🌙",
"description": "月之暗面 Kimi K2:万亿参数开源大模型,Agent时代先驱"
},
"29": {
"path": "tools/ai/llama-4-guide.html",
"name": "Llama 4 完整指南",
"category": "ai",
"keywords": "llama 4 meta 开源 moe scout maverick behemoth 多模态",
"icon": "🦙",
"description": "Meta Llama 4:MoE架构多模态开源模型,千万token上下文"
},
"30": {
"path": "tools/ai/mcp-clients.html",
"name": "MCP 客户端大全",
"category": "ai",
"keywords": "mcp 客户端 cherry studio cursor windsurf cline chatbox raycast openrouter ai ide",
"icon": "🖥️",
"description": "支持 MCP 的 AI 客户端、IDE 和开发工具汇总"
},
"31": {
"path": "tools/ai/mcp-guide.html",
"name": "MCP 配置指南",
"category": "ai",
"keywords": "mcp model context protocol 配置 服务器 claude desktop code",
"icon": "🔌",
"description": "Model Context Protocol 配置教程与热门服务器"
},
"32": {
"path": "tools/ai/mcp-protocol-guide.html",
"name": "MCP 协议指南",
"category": "ai",
"description": "Model Context Protocol 完整指南:连接 AI 与外部工具",
"icon": "🔗",
"keywords": "mcp protocol model context ai tools"
},
"33": {
"path": "tools/ai/midjourney-v7-guide.html",
"name": "Midjourney V7 指南",
"category": "ai",
"icon": "🤖",
"description": "Midjourney V7 完整指南:草图模式、语音生图、Omni-Reference 全向参考",
"keywords": "midjourney v7 ai绘画 文生图 草图模式 语音生图"
},
"34": {
"path": "tools/ai/nemotron-3-guide.html",
"name": "Nemotron 3 指南",
"category": "ai",
"description": "Nvidia Nemotron 3 开源大模型使用指南",
"icon": "🟢",
"keywords": "nemotron nvidia 开源 大模型"
},
"35": {
"path": "tools/ai/notebooklm-guide.html",
"name": "NotebookLM 指南",
"category": "ai",
"description": "Google NotebookLM AI 笔记助手使用指南",
"icon": "📓",
"keywords": "notebooklm google ai 笔记 助手"
},
"36": {
"path": "tools/ai/openai-o3-o4-guide.html",
"name": "OpenAI o3/o4-mini 指南",
"category": "ai",
"keywords": "openai o3 o4-mini 图像思维链 推理模型 codex cli 视觉 2025",
"icon": "🧠",
"description": "首个图像思维链推理模型:o3旗舰推理、o4-mini高效推理、Codex CLI"
},
"37": {
"path": "tools/ai/openai-reasoning-models-2025.html",
"name": "OpenAI 推理模型指南",
"category": "ai",
"description": "o1/o3/o4-mini 推理模型完全解析:图像思维链、工具调用、Codex CLI",
"icon": "🧠",
"keywords": "openai o1 o3 o4-mini reasoning 推理模型 codex cli 思维链 2025"
},
"38": {
"path": "tools/ai/perplexity-guide.html",
"name": "Perplexity 指南",
"category": "ai",
"description": "Perplexity AI 深度搜索使用指南",
"icon": "🔍",
"keywords": "perplexity ai search 搜索 深度研究"
},
"39": {
"path": "tools/ai/prompt-templates.html",
"name": "Prompt 模板库",
"category": "ai",
"keywords": "prompt 模板库",
"icon": "📝",
"description": "AI 提示词模板库"
},
"40": {
"path": "tools/ai/prompt-tips-2025.html",
"name": "Prompt 技巧速查 2025",
"category": "ai",
"icon": "🤖",
"description": "2025 年 Prompt Engineering 实用技巧速查,含 10 大核心技术",
"keywords": "prompt 提示词 cot few-shot react"
},
"41": {
"path": "tools/ai/rag-technology-2025.html",
"name": "RAG 技术完全指南",
"category": "ai",
"keywords": "rag 检索增强 langchain llamaindex 向量数据库 embedding pinecone milvus",
"icon": "📚",
"description": "2025年RAG技术完整指南:框架、向量库、Embedding模型详解"
},
"42": {
"path": "tools/ai/sora-guide.html",
"name": "Sora 视频生成指南",
"category": "ai",
"icon": "🤖",
"description": "OpenAI Sora 视频生成入门指南,包含定价、使用教程、Prompt 技巧",
"keywords": "sora openai 视频生成 ai视频 text-to-video"
},
"43": {
"path": "tools/ai/suno-ai-music-guide.html",
"name": "Suno AI 音乐指南",
"category": "ai",
"description": "Suno V4 AI 音乐生成完整指南",
"icon": "🎵",
"keywords": "suno ai music 音乐生成 v4"
},
"44": {
"path": "tools/ai/token-counter.html",
"name": "Token 计数器",
"category": "ai",
"keywords": "token 计数器",
"icon": "🔢",
"description": "估算 AI 模型 Token 数量"
},
"45": {
"path": "tools/ai/tts-tools-2025.html",
"name": "TTS 语音合成工具大全",
"category": "ai",
"keywords": "tts 语音合成 cosyvoice fish speech chattts gpt-sovits elevenlabs 语音克隆",
"icon": "🎙️",
"description": "2025年TTS语音合成工具完整指南:开源与商业方案对比"
},
"46": {
"path": "tools/ai/ui-ux-design-resources.html",
"name": "UI/UX 设计资源导航",
"category": "ai",
"keywords": "ui ux 设计 design dribbble behance awwwards 组件库 图标 配色 字体 素材",
"icon": "🎨",
"description": "UI/UX设计资源综合导航:灵感、组件库、图标、配色、字体、素材一站式指南"
},
"47": {
"path": "tools/ai/vibe-coding-guide.html",
"name": "Vibe Coding 入门指南",
"category": "ai",
"description": "2025 Collins 年度词汇 Vibe Coding:AI 辅助编程新范式完全指南",
"icon": "🎵",
"keywords": "vibe coding ai编程 cursor windsurf claude code copilot 自然语言编程 2025"
},
"48": {
"path": "tools/ai/wanxiang-2.6-guide.html",
"name": "万象 2.6 视频指南",
"category": "ai",
"description": "阿里巴巴万象 2.6 AI 视频生成指南",
"icon": "🎬",
"keywords": "万象 wanxiang alibaba 视频生成 ai"
},
"49": {
"path": "tools/dev/easing-visualizer.html",
"name": "缓动函数可视化",
"category": "dev",
"keywords": "easing 缓动 动画 cubic-bezier 贝塞尔 timing-function transition animation ease bounce elastic spring gsap animejs",
"icon": "〰️",
"description": "35+ 缓动函数可视化预览,支持 CSS/JS/Anime.js/GSAP 多格式导出"
},
"50": {
"path": "tools/calculator/age-diff-calc.html",
"name": "年龄差计算器",
"category": "calculator",
"keywords": "age diff calc 年龄差计算器",
"icon": "👥",
"description": "年龄差计算器"
},
"51": {
"path": "tools/calculator/aspect-ratio-calculator.html",
"name": "宽高比计算器",
"category": "calculator",
"keywords": "aspect ratio 宽高比 比例 分辨率 16:9",
"icon": "📐",
"description": "计算和转换宽高比,支持常见视频图片分辨率"
},
"52": {
"path": "tools/calculator/base-calculator.html",
"name": "进制计算器",
"category": "calculator",
"keywords": "进制 计算器 二进制 八进制 十六进制 位运算 bit",
"icon": "🔢",
"description": "多进制转换和位运算计算器,支持可视化位操作"
},
"53": {
"path": "tools/calculator/bitwise-calculator.html",
"name": "位运算计算器",
"category": "calculator",
"keywords": "位运算计算器",
"icon": "&",
"description": "位运算计算器"
},
"54": {
"path": "tools/calculator/bmi-calculator.html",
"name": "BMI 计算器",
"category": "calculator",
"keywords": "bmi 身体质量指数 体重 健康 计算器",
"icon": "⚖️",
"description": "计算身体质量指数,评估体重健康状况"
},
"55": {
"path": "tools/calculator/electricity-calc.html",
"name": "电费计算器",
"category": "calculator",
"keywords": "electricity calc 电费计算器",
"icon": "🔢",
"description": "电费计算器"
},
"56": {
"path": "tools/calculator/function-plotter.html",
"name": "函数图像绘制器",
"category": "calculator",
"keywords": "函数 图像 绘制 数学 坐标 function plot graph",
"icon": "📊",
"description": "绘制数学函数图像"
},
"57": {
"path": "tools/calculator/loan-calculator.html",
"name": "贷款计算器",
"category": "calculator",
"keywords": "贷款 房贷 计算器 等额本息 等额本金 还款",
"icon": "💰",
"description": "计算贷款月供、总利息,支持两种还款方式"
},
"58": {
"path": "tools/calculator/math-evaluator.html",
"name": "数学表达式计算器",
"category": "calculator",
"keywords": "数学 表达式 计算器 公式 函数 math",
"icon": "∑",
"description": "计算复杂数学表达式,支持函数和常量"
},
"59": {
"path": "tools/calculator/percentage.html",
"name": "百分比计算器",
"category": "calculator",
"keywords": "百分比 percent 计算 增长率 折扣",
"icon": "%",
"description": "多种百分比计算模式:求百分比、增减、占比等"
},
"60": {
"path": "tools/calculator/progress.html",
"name": "进度计算器",
"category": "calculator",
"keywords": "进度 百分比 完成度 项目 预估",
"icon": "📈",
"description": "计算项目进度百分比和预计完成时间"
},
"61": {
"path": "tools/calculator/salary-calc.html",
"name": "税后工资计算器",
"category": "calculator",
"keywords": "salary calc 税后工资计算器",
"icon": "🔢",
"description": "税后工资计算器"
},
"62": {
"path": "tools/calculator/speed-calc.html",
"name": "网速计算器",
"category": "calculator",
"keywords": "网速计算器",
"icon": "🔧",
"description": "网速计算器"
},
"63": {
"path": "tools/calculator/statistics-calc.html",
"name": "统计计算器",
"category": "calculator",
"keywords": "统计计算器",
"icon": "📈",
"description": "统计计算器"
},
"64": {
"path": "tools/calculator/storage-converter.html",
"name": "存储单位换算",
"category": "calculator",
"keywords": "存储 单位 字节 kb mb gb tb 换算",
"icon": "💾",
"description": "B/KB/MB/GB/TB/PB 存储单位互转"
},
"65": {
"path": "tools/calculator/time-calc.html",
"name": "时间加减计算器",
"category": "calculator",
"keywords": "时间加减计算器",
"icon": "🔧",
"description": "时间加减计算器"
},
"66": {
"path": "tools/calculator/tip-calculator.html",
"name": "小费/AA计算器",
"category": "calculator",
"keywords": "tip calculator 小费/aa计算器",
"icon": "💰",
"description": "小费/AA计算器"
},
"67": {
"path": "tools/calculator/triangle-calc.html",
"name": "三角函数计算器",
"category": "calculator",
"keywords": "triangle calc 三角函数计算器",
"icon": "🔢",
"description": "三角函数计算器"
},
"68": {
"path": "tools/converter/angle-converter.html",
"name": "角度单位转换器",
"category": "converter",
"keywords": "angle 角度 弧度 度 梯度 转换",
"icon": "📐",
"description": "度、弧度、梯度等角度单位互转"
},
"69": {
"path": "tools/converter/csv-json.html",
"name": "CSV ⇄ JSON 转换",
"category": "converter",
"keywords": "csv json 转换 表格 数据 excel converter",
"icon": "📊",
"description": "CSV 和 JSON 双向转换,支持表格预览"
},
"70": {
"path": "tools/converter/curl-to-code.html",
"name": "cURL to Code",
"category": "converter",
"keywords": "curl 转换 代码 javascript python go php java api 请求",
"icon": "🔧",
"description": "将 cURL 命令转换为多种编程语言代码"
},
"71": {
"path": "tools/converter/data-size-converter.html",
"name": "数据存储单位转换器",
"category": "converter",
"keywords": "data size 数据 存储 KB MB GB TB 转换",
"icon": "💾",
"description": "Bit、Byte、KB、MB、GB 等单位互转"
},
"72": {
"path": "tools/converter/data-size.html",
"name": "数据大小转换器",
"category": "converter",
"keywords": "data size converter 数据 大小 转换",
"icon": "💾",
"description": "数据存储单位之间的转换"
},
"73": {
"path": "tools/converter/data-url-converter.html",
"name": "Data URL 转换器",
"category": "converter",
"keywords": "data url base64 图片 文件 编码 解码 转换",
"icon": "🔗",
"description": "文件与 Data URL/Base64 互转,支持多种输出格式"
},
"74": {
"path": "tools/converter/file-size.html",
"name": "文件大小计算器",
"category": "converter",
"keywords": "文件大小计算器",
"icon": "📁",
"description": "文件大小单位转换"
},
"75": {
"path": "tools/converter/html-to-markdown.html",
"name": "HTML 转 Markdown",
"category": "converter",
"keywords": "html markdown 转换 md 格式",
"icon": "📝",
"description": "将 HTML 代码转换为 Markdown 格式"
},
"76": {
"path": "tools/converter/json-yaml.html",
"name": "JSON ⇄ YAML 转换",
"category": "converter",
"keywords": "json yaml 转换 converter 配置文件 双向转换",
"icon": "🔄",
"description": "JSON 和 YAML 双向转换,支持格式化和压缩"
},
"77": {
"path": "tools/converter/number-words.html",
"name": "数字转大写",
"category": "converter",
"keywords": "数字转大写",
"icon": "🔧",
"description": "数字转大写"
},
"78": {
"path": "tools/converter/pressure-converter.html",
"name": "压力单位转换器",
"category": "converter",
"keywords": "pressure 压力 帕斯卡 巴 大气压 psi 转换",
"icon": "🌡️",
"description": "帕斯卡、巴、大气压、PSI 等压力单位互转"
},
"79": {
"path": "tools/converter/unit-converter.html",
"name": "单位转换器",
"category": "converter",
"keywords": "单位 换算 长度 重量 温度 面积",
"icon": "⚖️",
"description": "长度、重量、温度、面积等多种单位换算"
},
"80": {
"path": "tools/dev/api-mock.html",
"name": "API 响应模拟器",
"category": "dev",
"keywords": "api 响应模拟器",
"icon": "🔧",
"description": "API 响应模拟器"
},
"81": {
"path": "tools/dev/arrow-generator.html",
"name": "箭头符号生成器",
"category": "dev",
"keywords": "arrow generator 箭头符号生成器",
"icon": "➡",
"description": "箭头符号生成器"
},
"82": {
"path": "tools/dev/ascii-art.html",
"name": "ASCII 艺术",
"category": "dev",
"keywords": "ascii art 艺术字 文字图案 banner figlet",
"icon": "▓",
"description": "将文字转换为 ASCII 艺术字体"
},
"83": {
"path": "tools/dev/ascii-table.html",
"name": "ASCII 码表",
"category": "dev",
"keywords": "ascii 码表",
"icon": "A",
"description": "ASCII 码表速查"
},
"84": {
"path": "tools/dev/base64.html",
"name": "Base64 编解码",
"category": "dev",
"keywords": "base64 编码 解码 encode decode",
"icon": "b64",
"description": "Base64 编码与解码,支持文本和文件"
},
"85": {
"path": "tools/dev/basic-auth-generator.html",
"name": "Basic Auth 生成器",
"category": "dev",
"keywords": "basic auth 认证 authorization http 头",
"icon": "🔑",
"description": "生成 HTTP Basic Authentication 头部"
},
"86": {
"path": "tools/dev/box-shadow.html",
"name": "Box Shadow 生成器",
"category": "dev",
"keywords": "box-shadow 阴影 css 生成器 预设 多层",
"icon": "◰",
"description": "可视化创建 CSS box-shadow,支持多层阴影和预设样式"
},
"87": {
"path": "tools/dev/browser-storage-viewer.html",
"name": "浏览器存储查看器",
"category": "dev",
"keywords": "localstorage sessionstorage cookie 存储 浏览器",
"icon": "🗄️",
"description": "查看和管理浏览器 LocalStorage、SessionStorage 和 Cookies"
},
"88": {
"path": "tools/dev/changelog-gen.html",
"name": "CHANGELOG 生成器",
"category": "dev",
"keywords": "changelog gen changelog 生成器",
"icon": "⚡",
"description": "CHANGELOG 生成器"
},
"89": {
"path": "tools/dev/charset-converter.html",
"name": "字符集转换器",
"category": "dev",
"keywords": "字符集 编码 utf8 utf16 unicode hex 转换",
"icon": "🔤",
"description": "文本编码转换,支持 UTF-8/16、Hex、URL 编码等格式"
},
"90": {
"path": "tools/dev/chmod-calculator.html",
"name": "Chmod 计算器",
"category": "dev",
"keywords": "chmod 权限 linux unix 文件权限 rwx",
"icon": "🔓",
"description": "Linux 文件权限计算,支持数字和符号模式互转"
},
"91": {
"path": "tools/dev/clipboard-viewer.html",
"name": "剪贴板查看器",
"category": "dev",
"keywords": "剪贴板 clipboard 查看 格式",
"icon": "📋",
"description": "查看剪贴板中的各种格式数据"
},
"92": {
"path": "tools/dev/code-diff.html",
"name": "代码对比工具",
"category": "dev",
"keywords": "代码对比工具",
"icon": "⇔",
"description": "并排对比两段代码的差异,高亮显示变更"
},
"93": {
"path": "tools/dev/code-stats.html",
"name": "代码统计器",
"category": "dev",
"keywords": "代码统计器",
"icon": "🔧",
"description": "代码统计器"