-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathatom.xml
1891 lines (1874 loc) · 84.1 KB
/
atom.xml
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
<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
<id>https://winking324.github.io</id>
<title>Winking</title>
<updated>2022-01-28T02:46:12.245Z</updated>
<generator>https://github.com/jpmonette/feed</generator>
<link rel="alternate" href="https://winking324.github.io"/>
<link rel="self" href="https://winking324.github.io/atom.xml"/>
<subtitle>还愣着干啥!点赞啊!</subtitle>
<logo>https://winking324.github.io/images/avatar.png</logo>
<icon>https://winking324.github.io/favicon.ico</icon>
<rights>All rights reserved 2022, Winking</rights>
<entry>
<title type="html"><![CDATA[MacOS 必备应用 - 日常篇]]></title>
<id>https://winking324.github.io/post/macos-apps-daily/</id>
<link href="https://winking324.github.io/post/macos-apps-daily/">
</link>
<updated>2022-01-27T11:24:26.000Z</updated>
<summary type="html"><![CDATA[<p>工欲善其事,必先利其器。对比 Windows 来说,MacOS 是一个干净纯粹的系统,8 年前,当我第一次用上这个系统时,我就立马跟 Windows 说“再见”了。这么多年使用下来,沉淀了一些对于开发者来说是必备的应用。当然大部分对于普通用户来说,也可以说是必备利器,能让你更好的上手 MacOS,然后拍手称快!</p>
]]></summary>
<content type="html"><![CDATA[<p>工欲善其事,必先利其器。对比 Windows 来说,MacOS 是一个干净纯粹的系统,8 年前,当我第一次用上这个系统时,我就立马跟 Windows 说“再见”了。这么多年使用下来,沉淀了一些对于开发者来说是必备的应用。当然大部分对于普通用户来说,也可以说是必备利器,能让你更好的上手 MacOS,然后拍手称快!</p>
<!-- more -->
<p>本篇的应用基本上是经常被使用到的,日常的部分是基本上每天都会用到的,偶尔的部分则是经常用的,开发部分则由于工作原因经常是用的,这部分可以选择性的看下就好了。</p>
<h1 id="1-日常">1 日常</h1>
<p>下面的这些工具基本上是每天中大概率会被用到的,所以优先推荐给大家。</p>
<h2 id="11-1password">1.1 1Password</h2>
<figure data-type="image" tabindex="1"><img src="https://winking324.github.io/post-images/1643254594324.png" alt="" loading="lazy"></figure>
<table>
<thead>
<tr>
<th>Question</th>
<th>Answer</th>
</tr>
</thead>
<tbody>
<tr>
<td>免费</td>
<td>是(订阅制,如果用 iCloud 同步可以免费)</td>
</tr>
<tr>
<td>评分</td>
<td>★★★★★</td>
</tr>
</tbody>
</table>
<p><a href="https://1password.com/zh-cn/">1Password</a> 应该是全球最受欢迎的密码管理器了,是存储和使用强密码的最简单方法,包括两步认证等。一键即可安全登录网站、填写表单。1Password 现在可以免费使用,但是如果需要将密码安全的保存、同步的话,需要订阅官方的服务。如果你所有的设备都是 Apple 的话,例如说 Mac、iPhone 等,可以选择使用 iCloud 保存、同步。目前我为了给家人保存以及共享密钥,所以选择的家庭订阅版本。<br>
为了保证互联网个人账户的安全性,强烈推荐大家使用高强度的随机密钥,这样即使某一个网站账户泄漏,也不会导致其他网站的账户被攻破。</p>
<h2 id="12-betterzip">1.2 BetterZip</h2>
<figure data-type="image" tabindex="2"><img src="https://winking324.github.io/post-images/1643255025682.png" alt="" loading="lazy"></figure>
<table>
<thead>
<tr>
<th>Question</th>
<th>Answer</th>
</tr>
</thead>
<tbody>
<tr>
<td>免费</td>
<td>否(可买断)</td>
</tr>
<tr>
<td>评分</td>
<td>★★★★☆</td>
</tr>
</tbody>
</table>
<p><a href="https://macitbetter.com/">BetterZip</a> 是一个压缩、解压软件,虽然有时候解压文本的时候,会出现一些意外的乱码,但是整体上跟免费的压缩、解压软件对比起来,功能已经算是非常完善、易用。</p>
<h2 id="13-spark">1.3 Spark</h2>
<figure data-type="image" tabindex="3"><img src="https://winking324.github.io/post-images/1643255370785.png" alt="" loading="lazy"></figure>
<table>
<thead>
<tr>
<th>Question</th>
<th>Answer</th>
</tr>
</thead>
<tbody>
<tr>
<td>免费</td>
<td>是</td>
</tr>
<tr>
<td>评分</td>
<td>★★★★★</td>
</tr>
</tbody>
</table>
<p><a href="https://sparkmailapp.com/">Spark</a> 是我认为 MacOS 上最好用的邮件客户端了,之前尝试了各种邮件客户端,例如系统自带的、Outlook、Airmail 等等,但是总归是有些小问题不尽人意,当试用了 Spark 之后就喜欢上了这款风格简洁、功能丰富的邮件客户端了。并且 Spark 支持各个平台,在 iOS 上面使用起来也非常顺手。</p>
<h2 id="14-typora">1.4 Typora</h2>
<figure data-type="image" tabindex="4"><img src="https://winking324.github.io/post-images/1643267176160.png" alt="" loading="lazy"></figure>
<table>
<thead>
<tr>
<th>Question</th>
<th>Answer</th>
</tr>
</thead>
<tbody>
<tr>
<td>免费</td>
<td>否(可买断)</td>
</tr>
<tr>
<td>评分</td>
<td>★★★★★</td>
</tr>
</tbody>
</table>
<p><a href="https://typora.io/">Typora</a> 是一个功能强大的 Markdown 编辑器,会即时渲染编写的 Markdown 内容,之前是免费,从 1.0 正式版开始收费,功能非常强大。如果想使用免费的 Markdown 编辑器,推荐使用 <a href="https://macdown.uranusjr.com/">MacDown</a>,也是一款很不错的选择。</p>
<h1 id="2-偶尔">2 偶尔</h1>
<p>这部分虽然不是每天使用,但也是基本上经常用的,都是很棒的应用,推荐给大家。</p>
<h2 id="21-gridea">2.1 Gridea</h2>
<figure data-type="image" tabindex="5"><img src="https://winking324.github.io/post-images/1643267626082.jpeg" alt="" loading="lazy"></figure>
<table>
<thead>
<tr>
<th>Question</th>
<th>Answer</th>
</tr>
</thead>
<tbody>
<tr>
<td>免费</td>
<td>是</td>
</tr>
<tr>
<td>评分</td>
<td>★★★★★</td>
</tr>
</tbody>
</table>
<p><a href="https://gridea.dev/">Gridea</a> 是一个免费开源的静态博客写作客户端,帮助你更容易地构建并管理博客或任何静态站点。例如当前你所看到的这个博客,就是使用该应用构建管理的。</p>
<h2 id="22-movist-pro">2.2 Movist Pro</h2>
<figure data-type="image" tabindex="6"><img src="https://winking324.github.io/post-images/1643275456661.jpeg" alt="" loading="lazy"></figure>
<table>
<thead>
<tr>
<th>Question</th>
<th>Answer</th>
</tr>
</thead>
<tbody>
<tr>
<td>免费</td>
<td>否(可买断)</td>
</tr>
<tr>
<td>评分</td>
<td>★★★★★</td>
</tr>
</tbody>
</table>
<p><a href="https://movistprime.com/">Movist Pro</a> 是一个功能强大的视频播放器,是 MacOS 上最强大好用的视频播放器也不为过。可以轻松的播放 4K 高清视频,方便的切换音轨、字幕等,支持所有常见的视频格式。</p>
<h2 id="23-omnigraffle">2.3 OmniGraffle</h2>
<figure data-type="image" tabindex="7"><img src="https://winking324.github.io/post-images/1643276348935.jpg" alt="" loading="lazy"></figure>
<table>
<thead>
<tr>
<th>Question</th>
<th>Answer</th>
</tr>
</thead>
<tbody>
<tr>
<td>免费</td>
<td>否(可买断)</td>
</tr>
<tr>
<td>评分</td>
<td>★★★☆☆</td>
</tr>
</tbody>
</table>
<p><a href="https://www.omnigroup.com/omnigraffle">OmniGraffle</a> 是 OmniGroup 家族中的一款专业绘图软件,可以通过导入模版支持更多绘图资源,完全能够满足日常工作画图需要,并且能够很完美的和 Sketch 协同工作。唯一的缺点就是价格太高,普通的用户非必要场景下使用成本过高,性价比过低。</p>
<h2 id="24-parallels-desktop">2.4 Parallels Desktop</h2>
<figure data-type="image" tabindex="8"><img src="https://winking324.github.io/post-images/1643277852961.jpg" alt="" loading="lazy"></figure>
<table>
<thead>
<tr>
<th>Question</th>
<th>Answer</th>
</tr>
</thead>
<tbody>
<tr>
<td>免费</td>
<td>否(可买断)</td>
</tr>
<tr>
<td>评分</td>
<td>★★★★☆</td>
</tr>
</tbody>
</table>
<p><a href="https://www.parallels.cn/">Parallels Desktop</a> 是一款虚拟机软件,但是一般主要用于在 MacOS 上安装 Windows 虚拟机,它可以无缝的将 MacOS 和 Windows 两个系统融合在一起,让你可以非常友好、无缝的使用 Windows 的应用。如果你偶尔有使用 Windows 应用的需要,这个应用可以很好的满足你的需要(玩大型游戏的就不要指望了)。</p>
<h1 id="3-开发">3 开发</h1>
<p>开发部分就是看大家喜好了,有些可以全部用 Vim 来开发,像我这种则喜欢尝试乱七八糟的应用,把合适的应用放在合适的场景上。当然,大家常用的 Xcode、jetbrains 家族、Visual Studio Code 这些,我就不在这里介绍了。</p>
<h2 id="31-iterm-2">3.1 iTerm 2</h2>
<figure data-type="image" tabindex="9"><img src="https://winking324.github.io/post-images/1643335433530.png" alt="" loading="lazy"></figure>
<table>
<thead>
<tr>
<th>Question</th>
<th>Answer</th>
</tr>
</thead>
<tbody>
<tr>
<td>免费</td>
<td>是</td>
</tr>
<tr>
<td>评分</td>
<td>★★★★★</td>
</tr>
</tbody>
</table>
<p><a href="https://iterm2.com/">iTerm 2</a> 是 MacOS 上最强大好用的终端工具,它免费且功能强大,日常工作必备利器。</p>
<h2 id="32-tower">3.2 Tower</h2>
<figure data-type="image" tabindex="10"><img src="https://winking324.github.io/post-images/1643335995581.png" alt="" loading="lazy"></figure>
<table>
<thead>
<tr>
<th>Question</th>
<th>Answer</th>
</tr>
</thead>
<tbody>
<tr>
<td>免费</td>
<td>否(订阅)</td>
</tr>
<tr>
<td>评分</td>
<td>★★☆☆☆</td>
</tr>
</tbody>
</table>
<p><a href="https://www.git-tower.com/mac">Tower</a> 是一款非常强大的Git客户端,如果你使用git的过程中,感觉使用命令很困难,可以尝试使用Tower。不过价格很高,还不能买断,对于一些个人开发者就十分不友好了,当然大家可以选择使用免费的 <a href="https://www.sourcetreeapp.com/">SourceTree</a>,大部分功能跟 Tower 基本上一致,只是在易用性上稍微欠缺一些。</p>
<h2 id="33-sublime-text">3.3 Sublime Text</h2>
<figure data-type="image" tabindex="11"><img src="https://winking324.github.io/post-images/1643336408337.png" alt="" loading="lazy"></figure>
<table>
<thead>
<tr>
<th>Question</th>
<th>Answer</th>
</tr>
</thead>
<tbody>
<tr>
<td>免费</td>
<td>否(可买断)</td>
</tr>
<tr>
<td>评分</td>
<td>★★★☆☆</td>
</tr>
</tbody>
</table>
<p><a href="https://www.sublimetext.com/">Sublime Text</a> 是一款老牌的 MacOS 编辑器,具有漂亮的用户界面和非凡的功能,可以安装各种各样的插件进行个性化调整。当然在 Visual Studio Code 问世以来,更多的用户开始选择免费的 Visual Studio Code,不过从性能上来说,个人感觉还是 Sublime Text 更胜一筹。</p>
<h2 id="34-araxis-merge">3.4 Araxis Merge</h2>
<figure data-type="image" tabindex="12"><img src="https://winking324.github.io/post-images/1643336744763.jpeg" alt="" loading="lazy"></figure>
<table>
<thead>
<tr>
<th>Question</th>
<th>Answer</th>
</tr>
</thead>
<tbody>
<tr>
<td>免费</td>
<td>否(可买断,开源社区贡献者可免费使用)</td>
</tr>
<tr>
<td>评分</td>
<td>★★★★★</td>
</tr>
</tbody>
</table>
<p><a href="https://www.araxis.com/merge/index.en">Araxis Merge</a> 是一款可视化文件对比合并同步工具,支持文本比较、图像比较、二进制比较、文件夹比较等功能,可以和上面介绍的 Tower 协同工作。如果你有使用过 Beyond Compare,可以试用一下 Araxis Merge,相信你能获得更棒的使用体验。</p>
<h2 id="35-dash">3.5 Dash</h2>
<figure data-type="image" tabindex="13"><img src="https://winking324.github.io/post-images/1643337375178.png" alt="" loading="lazy"></figure>
<table>
<thead>
<tr>
<th>Question</th>
<th>Answer</th>
</tr>
</thead>
<tbody>
<tr>
<td>免费</td>
<td>否(可买断)</td>
</tr>
<tr>
<td>评分</td>
<td>★★★★★</td>
</tr>
</tbody>
</table>
<p><a href="https://kapeli.com/dash">Dash</a> 是一个 API 文档浏览器和代码片段管理器。Dash自带了丰富的API文档,涉及各种主流的编程语言和框架,也可以生成自己的文档集或请求包含文档集。</p>
<h2 id="36-qt-creator">3.6 Qt Creator</h2>
<figure data-type="image" tabindex="14"><img src="https://winking324.github.io/post-images/1643337714484.jpg" alt="" loading="lazy"></figure>
<table>
<thead>
<tr>
<th>Question</th>
<th>Answer</th>
</tr>
</thead>
<tbody>
<tr>
<td>免费</td>
<td>是</td>
</tr>
<tr>
<td>评分</td>
<td>★★★★★</td>
</tr>
</tbody>
</table>
<p><a href="https://www.qt.io/product/development-tools">Qt Creator</a> 是一款免费开源的 C++ 集成开发环境(IDE)。如果你是一个 C++ 的开发人员,虽然你可以不使用 Qt,但是可以使用 Qt Creator 来开发纯 C++ 项目。</p>
]]></content>
</entry>
<entry>
<title type="html"><![CDATA[MacOS 必备应用 - 网络篇]]></title>
<id>https://winking324.github.io/post/macos-apps-network/</id>
<link href="https://winking324.github.io/post/macos-apps-network/">
</link>
<updated>2022-01-25T11:13:25.000Z</updated>
<summary type="html"><![CDATA[<p>工欲善其事,必先利其器。对比 Windows 来说,MacOS 是一个干净纯粹的系统,8 年前,当我第一次用上这个系统时,我就立马跟 Windows 说“再见”了。这么多年使用下来,沉淀了一些对于开发者来说是必备的应用。当然大部分对于普通用户来说,也可以说是必备利器,能让你更好的上手 MacOS,然后拍手称快!</p>
]]></summary>
<content type="html"><![CDATA[<p>工欲善其事,必先利其器。对比 Windows 来说,MacOS 是一个干净纯粹的系统,8 年前,当我第一次用上这个系统时,我就立马跟 Windows 说“再见”了。这么多年使用下来,沉淀了一些对于开发者来说是必备的应用。当然大部分对于普通用户来说,也可以说是必备利器,能让你更好的上手 MacOS,然后拍手称快!</p>
<!-- more -->
<p>这篇主要介绍在 MacOS 上常用的一些网络工具,这些工具有不少也是常驻于上篇介绍的 Menu Bar Extras 部分,没有将这些也列为插件,主要是为了保证文章比较简短,可以让大家快速找到想要的部分。</p>
<h1 id="1-代理">1 代理</h1>
<p>这一部分就简单介绍一下,不具体展开了,因为大家还是要在一个安全可靠的网络下,做一个守法守纪的好公民。</p>
<h2 id="11-shimo">1.1 Shimo</h2>
<figure data-type="image" tabindex="1"><img src="https://winking324.github.io/post-images/1643093481494.png" alt="" loading="lazy"></figure>
<table>
<thead>
<tr>
<th>Question</th>
<th>Answer</th>
</tr>
</thead>
<tbody>
<tr>
<td>免费</td>
<td>否(可买断)</td>
</tr>
<tr>
<td>评分</td>
<td>★★★★☆</td>
</tr>
</tbody>
</table>
<p><a href="https://www.shimovpn.com/">Shimo</a> 是一个专业的 VPN 工具,国内还是有不少比较大的企业(尤其是多省市分布的),访问内网服务的时候,需要经过公司统一的 VPN 网络。虽然 MacOS 上配置 VPN 不是很复杂,但是 Shimo 做到了更好的易用性和稳定性,并且支持的协议也非常多。</p>
<h2 id="12-surge">1.2 Surge</h2>
<figure data-type="image" tabindex="2"><img src="https://winking324.github.io/post-images/1643093865294.jpg" alt="" loading="lazy"></figure>
<table>
<thead>
<tr>
<th>Question</th>
<th>Answer</th>
</tr>
</thead>
<tbody>
<tr>
<td>免费</td>
<td>否(可买断)</td>
</tr>
<tr>
<td>评分</td>
<td>★★★☆☆</td>
</tr>
</tbody>
</table>
<p><a href="https://nssurge.com/">Surge</a> 据说是 MacOS 上科学上网最好用的工具了,但是价格过高,让人望而止步,另外这方面目前免费的应用也越来越多,性价比较低。</p>
<h2 id="13-clashx">1.3 ClashX</h2>
<figure data-type="image" tabindex="3"><img src="https://winking324.github.io/post-images/1643094274283.png" alt="" loading="lazy"></figure>
<table>
<thead>
<tr>
<th>Question</th>
<th>Answer</th>
</tr>
</thead>
<tbody>
<tr>
<td>免费</td>
<td>是</td>
</tr>
<tr>
<td>评分</td>
<td>★★★★★</td>
</tr>
</tbody>
</table>
<p><a href="https://github.com/yichengchen/clashX/releases">ClashX</a> 是一款免费开源的科学上网工具,应该是除了 Surge 外最佳可选了,功能强大,被大家广泛推荐。</p>
<h2 id="14-proxifier">1.4 Proxifier</h2>
<figure data-type="image" tabindex="4"><img src="https://winking324.github.io/post-images/1643095668916.png" alt="" loading="lazy"></figure>
<table>
<thead>
<tr>
<th>Question</th>
<th>Answer</th>
</tr>
</thead>
<tbody>
<tr>
<td>免费</td>
<td>否(可买断)</td>
</tr>
<tr>
<td>评分</td>
<td>★★★★☆</td>
</tr>
</tbody>
</table>
<p><a href="https://www.proxifier.com/">Proxifier</a> 是一款本地的代理客户端,可以制定复杂的网络规则,让不支持通过代理服务器工作的应用能通过本地代理网络访问互联网。Proxifier 可以很好的跟 ClashX 等代理应用搭配使用,获得最佳体验。唯一的缺点是,Proxifier 目前不能运行在后台,通过 Menu Bar Extras 上的图标进行操作,而必须占用一个 Dock 的位置。</p>
<h1 id="2-过滤">2 过滤</h1>
<p>上面刚刚提到的 Proxifier 其实也是一个很好的过滤工具,可以通过规则,将符合规则的互联网请求进行一定的处理,但是更多是代理方面的处理,所以没有放在这一段中。</p>
<h2 id="21-little-snitch">2.1 Little Snitch</h2>
<figure data-type="image" tabindex="5"><img src="https://winking324.github.io/post-images/1643096482170.png" alt="" loading="lazy"></figure>
<table>
<thead>
<tr>
<th>Question</th>
<th>Answer</th>
</tr>
</thead>
<tbody>
<tr>
<td>免费</td>
<td>否(可买断)</td>
</tr>
<tr>
<td>评分</td>
<td>★★★★☆</td>
</tr>
</tbody>
</table>
<p><a href="https://www.obdev.at/products/littlesnitch/index.html">Little Snitch</a> 是一款个人安全防护软件,能防止应用在你不知道的情况下自动访问网络,并且可以查看应用访问互联网的具体情况,功能非常强大。</p>
<h2 id="22-adgurad">2.2 AdGurad</h2>
<figure data-type="image" tabindex="6"><img src="https://winking324.github.io/post-images/1643097188282.png" alt="" loading="lazy"></figure>
<table>
<thead>
<tr>
<th>Question</th>
<th>Answer</th>
</tr>
</thead>
<tbody>
<tr>
<td>免费</td>
<td>否(可买断)</td>
</tr>
<tr>
<td>评分</td>
<td>★★★★★</td>
</tr>
</tbody>
</table>
<p><a href="https://adguard.com/en/welcome.html">AdGuard</a> 是一个功能强大的广告和弹出窗口的拦截工具,适用于所有安装的浏览器。Adguard 可以去除烦人的页面广告,减少了页面加载时间,并节省大量的流量,还可以拦截跟踪器和危险的网站,保证一定的安全性。我作为一个不太看网页的用户,一年间累计拦截广告 107798 次,拦截跟踪器 300393 次,节省 20.98G 流量,其效果非常明显。</p>
<h1 id="3-下载上传">3 下载/上传</h1>
<p>这部分其实没有太多可以介绍的,简单介绍一些大家可能不太了解的工具,例如说各类网盘、迅雷这种常见的就不介绍了。</p>
<h2 id="31-aria2gui">3.1 Aria2GUI</h2>
<figure data-type="image" tabindex="7"><img src="https://winking324.github.io/post-images/1643097853905.png" alt="" loading="lazy"></figure>
<table>
<thead>
<tr>
<th>Question</th>
<th>Answer</th>
</tr>
</thead>
<tbody>
<tr>
<td>免费</td>
<td>是</td>
</tr>
<tr>
<td>评分</td>
<td>★★★★☆</td>
</tr>
</tbody>
</table>
<p><a href="https://github.com/yangshun1029/aria2gui/releases">Aria2GUI</a> 是一款基于 aria2 的免费开源下载工具,可帮助简化不同设备和服务器之间的下载过程。它支持磁力链接、BT 种子、HTTP 等类型的文件下载,Aria2GUI 有着优秀的性能及较低的资源占用,尤其适合于下载 HTTP 类型的大文件。缺点是该项目于 2018 年已停止更新,只是功能处于可用的状态而已,很多细节其实并不完善。</p>
<h2 id="32-transmit">3.2 Transmit</h2>
<figure data-type="image" tabindex="8"><img src="https://winking324.github.io/post-images/1643098266899.png" alt="" loading="lazy"></figure>
<table>
<thead>
<tr>
<th>Question</th>
<th>Answer</th>
</tr>
</thead>
<tbody>
<tr>
<td>免费</td>
<td>否(可买断)</td>
</tr>
<tr>
<td>评分</td>
<td>★★★★★</td>
</tr>
</tbody>
</table>
<p><a href="https://panic.com/transmit/">Transmit</a> 是一款功能齐全的上传/下载客户端。支持 FTP、SFTP、WebDAV、Amazon S3 等等各类协议,直接通过文件拖拽就能实现上传/下载功能,非常方便。</p>
<h2 id="33-downie">3.3 Downie</h2>
<figure data-type="image" tabindex="9"><img src="https://winking324.github.io/post-images/1643098669563.png" alt="" loading="lazy"></figure>
<table>
<thead>
<tr>
<th>Question</th>
<th>Answer</th>
</tr>
</thead>
<tbody>
<tr>
<td>免费</td>
<td>否(可买断)</td>
</tr>
<tr>
<td>评分</td>
<td>★★★★★</td>
</tr>
</tbody>
</table>
<p><a href="https://software.charliemonroe.net/downie/">Downie</a> 是一个超级易于使用的视频下载工具,支持 YouTube,Vimeo 等大部分主流视频网站。可以非常方便的将页面上的视频下载下来,这样可以在没有网络的环境下,继续观看。</p>
<h1 id="4-开发">4 开发</h1>
<p>这部分主要是有开发或者测试相关需求的应用,这里只简单介绍几款常见的,其他就不展开介绍了,毕竟大多数人不是从事开发相关工作的。</p>
<h2 id="41-wireshark">4.1 Wireshark</h2>
<figure data-type="image" tabindex="10"><img src="https://winking324.github.io/post-images/1643099257993.png" alt="" loading="lazy"></figure>
<table>
<thead>
<tr>
<th>Question</th>
<th>Answer</th>
</tr>
</thead>
<tbody>
<tr>
<td>免费</td>
<td>是</td>
</tr>
<tr>
<td>评分</td>
<td>★★★★★</td>
</tr>
</tbody>
</table>
<p><a href="https://www.wireshark.org/">Wireshark</a> 是一款开源免费的跨平台抓包工具,应该没有比 Wireshark 更强大的抓包工具了,大多数网络相关的开发、测试、运维等,都使用该工具来分析调查网络问题。</p>
<h2 id="42-paw">4.2 Paw</h2>
<figure data-type="image" tabindex="11"><img src="https://winking324.github.io/post-images/1643099449237.png" alt="" loading="lazy"></figure>
<table>
<thead>
<tr>
<th>Question</th>
<th>Answer</th>
</tr>
</thead>
<tbody>
<tr>
<td>免费</td>
<td>否(可买断)</td>
</tr>
<tr>
<td>评分</td>
<td>★★★★★</td>
</tr>
</tbody>
</table>
<p><a href="https://paw.cloud/">Paw</a> 是一款强大的 HTTP 客户端工具,可以用于开发测试 OpenAPI。相比免费的 Postman 来说,它更加易用,功能也更加强大,有丰富的扩展插件,并且用户也可以很快很方便的开发属于自己的扩展插件。曾经有一段时间,可以在 Twitter 上免费领取,不知道你上车了没?</p>
<h2 id="43-charles">4.3 Charles</h2>
<figure data-type="image" tabindex="12"><img src="https://winking324.github.io/post-images/1643099897562.png" alt="" loading="lazy"></figure>
<table>
<thead>
<tr>
<th>Question</th>
<th>Answer</th>
</tr>
</thead>
<tbody>
<tr>
<td>免费</td>
<td>否(可买断)</td>
</tr>
<tr>
<td>评分</td>
<td>★★★★★</td>
</tr>
</tbody>
</table>
<p><a href="https://www.charlesproxy.com/">Charles</a> 是 MacOS 上最强大的 HTTP 请求抓包的工具,可以快速有效的获得请求以及回复的 HTTP 信息。</p>
]]></content>
</entry>
<entry>
<title type="html"><![CDATA[MacOS 必备应用 - 插件篇]]></title>
<id>https://winking324.github.io/post/macos-apps-plugins/</id>
<link href="https://winking324.github.io/post/macos-apps-plugins/">
</link>
<updated>2022-01-19T11:15:59.000Z</updated>
<summary type="html"><![CDATA[<p>工欲善其事,必先利其器。对比 Windows 来说,MacOS 是一个干净纯粹的系统,8 年前,当我第一次用上这个系统时,我就立马跟 Windows 说“再见”了。这么多年使用下来,沉淀了一些对于开发者来说是必备的应用。当然大部分对于普通用户来说,也可以说是必备利器,能让你更好的上手 MacOS,然后拍手称快!</p>
]]></summary>
<content type="html"><![CDATA[<p>工欲善其事,必先利其器。对比 Windows 来说,MacOS 是一个干净纯粹的系统,8 年前,当我第一次用上这个系统时,我就立马跟 Windows 说“再见”了。这么多年使用下来,沉淀了一些对于开发者来说是必备的应用。当然大部分对于普通用户来说,也可以说是必备利器,能让你更好的上手 MacOS,然后拍手称快!</p>
<!-- more -->
<p>MacOS 从界面整体上,分为三大部分:顶部的 Menu Bar,中间的应用/桌面区域,底部的 Dock。这里插件主要指的是可以进入到 Menu Bar Extras 部分的那些应用。推荐的这些应用大部分都是免费,或者是可买断并且价格不高的,付费的建议大家先试用,如果满意请付费,给开发者更多的支持!</p>
<figure data-type="image" tabindex="1"><img src="https://winking324.github.io/post-images/1642564188238.png" alt="" loading="lazy"></figure>
<h1 id="1-必备的">1 必备的</h1>
<p>必备部分的 App 是可以适合大部分使用场景,对于所有使用 MacOS 的人都有所帮助的应用。</p>
<h2 id="11-alfred">1.1 Alfred</h2>
<figure data-type="image" tabindex="2"><img src="https://winking324.github.io/post-images/1642582819221.jpeg" alt="" loading="lazy"></figure>
<table>
<thead>
<tr>
<th>Question</th>
<th>Answer</th>
</tr>
</thead>
<tbody>
<tr>
<td>免费</td>
<td>是(高级功能需要付费,可买断)</td>
</tr>
<tr>
<td>评分</td>
<td>★★★★★</td>
</tr>
</tbody>
</table>
<p><a href="https://www.alfredapp.com/">Alfred</a> 是一款被称之为 Mac 效率神器的 App,有了 Alfred 你甚至无需鼠标就可以实现各种操作。Alfred 基本功能是可以免费使用的,一些高级功能则需要付费开通,好处是可以一次性买断。</p>
<p>推荐的常用功能有:</p>
<ul>
<li>输入 App 名字打开 App;</li>
<li>打开粘贴板历史,快速查找并粘贴历史内容,这样可以省的安装一个粘贴板管理 App;</li>
<li>查找并打开浏览器书签;</li>
<li>查找并打开文件;</li>
<li>安装或者自己编写 Workflow,和其他 App 互动,进一步提高工作效率;</li>
</ul>
<h2 id="12-bartender">1.2 Bartender</h2>
<figure data-type="image" tabindex="3"><img src="https://winking324.github.io/post-images/1642584126004.png" alt="" loading="lazy"></figure>
<table>
<thead>
<tr>
<th>Question</th>
<th>Answer</th>
</tr>
</thead>
<tbody>
<tr>
<td>免费</td>
<td>否(可买断)</td>
</tr>
<tr>
<td>评分</td>
<td>★★★★★</td>
</tr>
</tbody>
</table>
<p><a href="https://www.macbartender.com/">Bartender</a> 是一款实用的 Menu Bar Extras 管理工具。当你安装了很多插件时,Menu Bar Extras 会变得越来越长,此时可以使用 Bartender 将部分 App 有选择放进 Bartender 的二级菜单,不仅会看起来更整洁,使用起来也不会造成太大的麻烦。<br>
尤其是 Bartender 可以将一些只需要在后台执行,完全不需要关心的 App 永远的隐藏起来,甚至不出现在二级菜单中,将 Menu Bar Extras 变成一片净土。</p>
<h2 id="13-quitter">1.3 Quitter</h2>
<figure data-type="image" tabindex="4"><img src="https://winking324.github.io/post-images/1642584835337.png" alt="" loading="lazy"></figure>
<table>
<thead>
<tr>
<th>Question</th>
<th>Answer</th>
</tr>
</thead>
<tbody>
<tr>
<td>免费</td>
<td>是</td>
</tr>
<tr>
<td>评分</td>
<td>★★★★★</td>
</tr>
</tbody>
</table>
<p><a href="https://marco.org/appcasts/Quitter.zip">Quitter</a> 是一款极其简单的 App,它可以将一段时间没有使用或者收到新消息的应用进行隐藏或者退出,如果你的 Mac 内存不是足够大,那它将是一个得力的助手。<br>
另外 MacOS 上很多应用,当你关闭它时,它实际上并没有真正的退出,例如说打开一张图片后关闭,预览应用并没有退出,所以此时 Quitter 可以很好的帮助到你。<br>
Quitter 是可以配置好以后,使用 Bartender 永远隐藏起来的应用之一。</p>
<h2 id="14-itsycal">1.4 Itsycal</h2>
<figure data-type="image" tabindex="5"><img src="https://winking324.github.io/post-images/1642643016655.png" alt="" loading="lazy"></figure>
<table>
<thead>
<tr>
<th>Question</th>
<th>Answer</th>
</tr>
</thead>
<tbody>
<tr>
<td>免费</td>
<td>是</td>
</tr>
<tr>
<td>评分</td>
<td>★★★★★</td>
</tr>
</tbody>
</table>
<p><a href="https://www.mowglii.com/itsycal/">Itsycal</a> 是一款极简的日历的 App,可以在 Menu Bar Extras 上快速查看日期和事件。当然 MacOS 上最强大的日历应用当属 Fantastical 了,但是它目前是订阅制,价格较贵,大多数的人也不会用到它强大的功能,所以性价比较低。</p>
<h2 id="15-popclip">1.5 PopClip</h2>
<figure data-type="image" tabindex="6"><img src="https://winking324.github.io/post-images/1642645281079.jpeg" alt="" loading="lazy"></figure>
<table>
<thead>
<tr>
<th>Question</th>
<th>Answer</th>
</tr>
</thead>
<tbody>
<tr>
<td>免费</td>
<td>否(可买断)</td>
</tr>
<tr>
<td>评分</td>
<td>★★★★★</td>
</tr>
</tbody>
</table>
<p><a href="https://pilotmoon.com/popclip/">PopClip</a> 是类似于 iOS 上长按一段文字,弹出复制、剪切等快捷操作的 App。它会在你选择一段文字后,自动出现在文字上方可进行的操作,这些操作可以在官方 <a href="https://pilotmoon.com/popclip/extensions/">Extensions</a> 中自行下载安装,并且可以自己根据需要编写新的 Extension。</p>
<h2 id="16-ishot">1.6 iShot</h2>
<figure data-type="image" tabindex="7"><img src="https://winking324.github.io/post-images/1642658871244.jpg" alt="" loading="lazy"></figure>
<table>
<thead>
<tr>
<th>Question</th>
<th>Answer</th>
</tr>
</thead>
<tbody>
<tr>
<td>免费</td>
<td>是</td>
</tr>
<tr>
<td>评分</td>
<td>★★★★★</td>
</tr>
</tbody>
</table>
<p>iShot(App Store 下载)是一款功能全面的录屏、区域截图、窗口截图、长截图、延时截图、快速标注、贴图神器,有的窗口需要权限而无法进行截图,而iShot的全屏延时截图很好的解决了这种情况。<br>
一般来说大多数的截图可以用 QQ 或者微信来解决,但是稍微复杂的延时截图(可能在截取某些快捷菜单时使用)、滚动截图、录屏时,就很难解决了,而 iShot 是解决这些问题的最佳 App。<br>
另外,iShot 这个 App 的开发者还有其他知名的应用,例如超级右键、自动切换输入法、FastZip 解压工具等,也是很受大家欢迎。</p>
<h1 id="2-推荐的">2 推荐的</h1>
<p>推荐部分的 App 不是适合于大多数场景的,但是如果你刚好在相同的场景下,那这些 App 也会变成一款必备的软件。</p>
<h2 id="21-clean-my-mac">2.1 Clean My Mac</h2>
<figure data-type="image" tabindex="8"><img src="https://winking324.github.io/post-images/1642659096018.png" alt="" loading="lazy"></figure>
<table>
<thead>
<tr>
<th>Question</th>
<th>Answer</th>
</tr>
</thead>
<tbody>
<tr>
<td>免费</td>
<td>否(可买断)</td>
</tr>
<tr>
<td>评分</td>
<td>★★★★☆</td>
</tr>
</tbody>
</table>
<p><a href="https://cleanmymac.com/">CleanMyMac</a> 是一款 MacOS 垃圾清理工具,可以清除 MacOS 多余的语言包、系统缓存、应用程序,并可以检索大文件、重复文件等,是硬盘瘦身的好工具。美中不足的是,在卸载应用程序时,没有将应用的一些缓存文件一起清理掉。</p>
<h2 id="22-magnet">2.2 Magnet</h2>
<figure data-type="image" tabindex="9"><img src="https://winking324.github.io/post-images/1642659606141.jpeg" alt="" loading="lazy"></figure>
<table>
<thead>
<tr>
<th>Question</th>
<th>Answer</th>
</tr>
</thead>
<tbody>
<tr>
<td>免费</td>
<td>否(可买断)</td>
</tr>
<tr>
<td>评分</td>
<td>★★★★★</td>
</tr>
</tbody>
</table>
<p>Magnet(App Store 下载)是一款窗口管理工具,可以方便的管理桌面多窗口的布局和排列,也可以将一个窗口从一个屏幕移动到另外一个屏幕,并且支持快捷键操作。<br>
当然,窗口管理工具可能有很多种,在试用了几种相关的 App 之后,Magnet 不是功能最强大的,但是基本功能足够使用,质量非常可靠,性价比也是最高的一款。</p>
<h2 id="23-boom-3d">2.3 Boom 3D</h2>
<figure data-type="image" tabindex="10"><img src="https://winking324.github.io/post-images/1642660075347.png" alt="" loading="lazy"></figure>
<table>
<thead>
<tr>
<th>Question</th>
<th>Answer</th>
</tr>
</thead>
<tbody>
<tr>
<td>免费</td>
<td>否(可买断)</td>
</tr>
<tr>
<td>评分</td>
<td>★★★★★</td>
</tr>
</tbody>
</table>
<p><a href="https://www.globaldelight.com/boom/">Boom 3D</a> 是一款音效增强和 3D 环绕音应用。如果让我从所有插件中只选一种的话,也许就是它了吧,我依旧记得第一次试用它时(当时是上一个版本 Boom2),被那种音效深深震撼着,发现再也离不开它了。<br>
在这繁杂的生活中,听音乐与读书可能是唯一能让灵魂稍微放松的方式了吧,Boom 3D 可以更好的让你沉浸在这稍纵即逝的时光中。<br>
不只是音效增强,它还可以控制每一个软件的音量,也可以控制输出音频的设备,也可以在某些工作场景中给到得力的帮助。</p>
<h2 id="24-sip">2.4 Sip</h2>
<figure data-type="image" tabindex="11"><img src="https://winking324.github.io/post-images/1642660945679.png" alt="" loading="lazy"></figure>
<table>
<thead>
<tr>
<th>Question</th>
<th>Answer</th>
</tr>
</thead>
<tbody>
<tr>
<td>免费</td>
<td>否(可买断)</td>
</tr>
<tr>
<td>评分</td>
<td>★★★★★</td>
</tr>
</tbody>
</table>
<p><a href="http://sipapp.io/">Sip</a> 是一款小巧、方便的取色软件,你只需要鼠标点一下即可取得当前位置的颜色值,并将数据自动存到剪切板,方便随时粘贴出来。</p>
<h2 id="25-snippetslab">2.5 SnippetsLab</h2>
<figure data-type="image" tabindex="12"><img src="https://winking324.github.io/post-images/1642661145569.jpg" alt="" loading="lazy"></figure>
<table>
<thead>
<tr>
<th>Question</th>
<th>Answer</th>
</tr>
</thead>
<tbody>
<tr>
<td>免费</td>
<td>否(可买断)</td>
</tr>
<tr>
<td>评分</td>
<td>★★★★★</td>
</tr>
</tbody>
</table>
<p><a href="https://www.renfei.org/snippets-lab/">SnippetsLab</a> 是一个功能齐全、优雅且易于使用的代码收集及管理工具。支持多达 440 种语言的代码高亮、Markdown 编辑与预览,以及强大的组织和搜索功能;它的目标是帮助构建您的个人编程知识仓库,并确保您可以随时轻松访问它们。<br>
并且 SnippetsLab 可以和 Alfred Workflow 搭配使用,使得搜索更加方便,是程序员日常工作的得力助手。</p>
<h2 id="26-ntfs-for-mac">2.6 NTFS for Mac</h2>
<figure data-type="image" tabindex="13"><img src="https://winking324.github.io/post-images/1642661512919.png" alt="" loading="lazy"></figure>
<table>
<thead>
<tr>
<th>Question</th>
<th>Answer</th>
</tr>
</thead>
<tbody>
<tr>
<td>免费</td>
<td>否(可买断)</td>
</tr>
<tr>
<td>评分</td>
<td>★★★★☆</td>
</tr>
</tbody>
</table>
<p><a href="https://www.paragon-software.com/home/ntfs-mac/">NTFS for Mac</a> 是 MacOS 下读写 NTFS 格式磁盘的工具。在 MacOS 下,NTFS 格式的磁盘默认是只读的,所以只能访问磁盘上的文件,但是不能写入或者修改文件,这时就需要使用 NTFS for Mac 了。<br>
试用了几款不同的 NTFS 磁盘 App,NTFS for Mac 是性能和稳定性最好的一款。缺点是价格较高,并且支持更多格式的磁盘,例如说 extFS,都需要再次购买,性价比较低。</p>
<h1 id="3-其他的">3 其他的</h1>
<p>这些 App 要看个人喜好,有些虽然没有什么实际的作用,但是会很有趣,但是还是相当推荐的。</p>
<h2 id="31-dynamic-wallpaper">3.1 Dynamic Wallpaper</h2>
<figure data-type="image" tabindex="14"><img src="https://winking324.github.io/post-images/1642662396285.png" alt="" loading="lazy"></figure>
<table>
<thead>
<tr>
<th>Question</th>
<th>Answer</th>
</tr>
</thead>
<tbody>
<tr>
<td>免费</td>
<td>否(可买断)</td>
</tr>
<tr>
<td>评分</td>
<td>★★★★★</td>
</tr>
</tbody>
</table>
<p>Dynamic Wallpaper(App Store 下载)是一款动态壁纸引擎,可以将动态视频作为壁纸,告别单调的静态壁纸。Dynamic Wallpaper 壁纸资源更新频率很高,并且价格很低,从下载壁纸使用的服务器带宽成本来说,已经非常实惠了,只能说非常感谢这个开发者给我们带来了这么优秀的作品。</p>
<h2 id="32-typinator">3.2 Typinator</h2>
<figure data-type="image" tabindex="15"><img src="https://winking324.github.io/post-images/1642663223595.jpg" alt="" loading="lazy"></figure>
<table>
<thead>
<tr>
<th>Question</th>
<th>Answer</th>
</tr>
</thead>
<tbody>
<tr>
<td>免费</td>
<td>否(可买断)</td>
</tr>
<tr>
<td>评分</td>
<td>★★★★★</td>
</tr>
</tbody>
</table>
<p><a href="https://www.ergonis.com/products/typinator/">Typinator</a> 是一款可以快速输入文字的 App,通过设置快速输入文字的缩略字符,如设置 address 的缩略字符为 addr,然后输入 addr 时,会自动替换为 address,对于经常要输入重复字符的工作很有帮助。</p>
<h2 id="33-mtmr">3.3 MTMR</h2>
<figure data-type="image" tabindex="16"><img src="https://winking324.github.io/post-images/1642663741273.png" alt="" loading="lazy"></figure>
<table>
<thead>
<tr>
<th>Question</th>
<th>Answer</th>
</tr>
</thead>
<tbody>
<tr>
<td>免费</td>
<td>是</td>
</tr>
<tr>
<td>评分</td>
<td>★★★★★</td>
</tr>
</tbody>
</table>
<p><a href="https://mtmr.app/">MTMR</a> My TouchBar My Rules,虽然 Apple 终于已经放弃了 TouchBar,但是对于现存的带有 TouchBar 的 MacBook 来说,MTMR 让 TouchBar 变得更有用。并且 MTMR 是一款开源的 App,你可以在这个基础上,做出更加出色的功能。</p>
<h2 id="34-filepane">3.4 FilePane</h2>
<figure data-type="image" tabindex="17"><img src="https://winking324.github.io/post-images/1642664557196.jpg" alt="" loading="lazy"></figure>
<table>
<thead>
<tr>
<th>Question</th>
<th>Answer</th>
</tr>
</thead>
<tbody>
<tr>
<td>免费</td>
<td>否(可买断)</td>
</tr>
<tr>
<td>评分</td>
<td>★★★★☆</td>
</tr>
</tbody>
</table>
<p><a href="https://mymixapps.com/filepane">FilePane</a> 是一个简单实用的文件快速处理工具,通过简单的拖拽,便可以实现文件的一些快速操作,例如拷贝、移动、分享、编辑、删除等等。如果日常有很多文件类的操作,可以很好的通过简单的拖拽来解决。<br>
如果能够跟 PopClip 那样添加各种个样的 Extensions,或者自定义操作、菜单等,那就非常完美了。</p>
<h2 id="35-moment">3.5 Moment</h2>
<figure data-type="image" tabindex="18"><img src="https://winking324.github.io/post-images/1642665580930.png" alt="" loading="lazy"></figure>
<table>
<thead>
<tr>
<th>Question</th>
<th>Answer</th>
</tr>
</thead>
<tbody>
<tr>
<td>免费</td>
<td>否(可买断)</td>
</tr>
<tr>
<td>评分</td>
<td>★★★★☆</td>
</tr>
</tbody>
</table>
<p><a href="https://fireball.studio/moment">Moment</a> 是一款倒数日应用,可以创建倒数日、时间进度条、纪念日、生日等。唯一美中不足的是,目前还不支持农历,想要计算农历的日期,就很困难了。</p>
<h2 id="36-runcat">3.6 RunCat</h2>
<figure data-type="image" tabindex="19"><img src="https://winking324.github.io/post-images/1642666255595.png" alt="" loading="lazy"></figure>
<table>
<thead>
<tr>
<th>Question</th>
<th>Answer</th>