-
Notifications
You must be signed in to change notification settings - Fork 107
Expand file tree
/
Copy pathtools.html
More file actions
1009 lines (466 loc) · 32.3 KB
/
tools.html
File metadata and controls
1009 lines (466 loc) · 32.3 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
<!DOCTYPE HTML>
<html lang="zh" >
<head>
<meta charset="UTF-8">
<meta content="text/html; charset=utf-8" http-equiv="Content-Type">
<title>神一样的工具们 · Project V 官方网站</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<script type="text/javascript">
function inIframe () {
try { return window.self !== window.top; } catch (e) { return true; }
}
function isValidDomain() {
var host = window.location.hostname;
var domains = ['v2ray.com', 'github.io', 'mux.cool', 'v2ray.cool', 'archive.org'];
for (var dx in domains) {
if (host.indexOf(domains[dx]) >= 0) {
return true;
}
}
return false;
}
if (inIframe() || !isValidDomain()) {
window.top.location.href = 'https://www.v2ray.com/';
}
</script>
<link rel="stylesheet" href="../gitbook/style.css">
<link rel="stylesheet" href="../gitbook/gitbook-plugin-mermaid-gb3/mermaid/mermaid.css">
<link rel="stylesheet" href="../gitbook/gitbook-plugin-anchors/plugin.css">
<link rel="stylesheet" href="../gitbook/gitbook-plugin-prism/prism-base16-ateliersulphurpool.light.css">
<link rel="stylesheet" href="../gitbook/gitbook-plugin-hints/plugin-hints.css">
<link rel="stylesheet" href="../styles/website.css">
<meta name="HandheldFriendly" content="true"/>
<meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<link rel="apple-touch-icon-precomposed" sizes="152x152" type="image/png" href="/resources/favicon-152.png">
<link rel="apple-touch-icon-precomposed" sizes="180x180" type="image/png" href="/resources/favicon-180.png">
<link rel="icon" type="image/png" href="/resources/favicon-192.png">
<link rel="shortcut icon" href="/resources/favicon.ico" type="image/x-icon">
<link href="https://fonts.loli.net/css?family=Source+Code+Pro:400|Open+Sans:400,700&subset=cyrillic" rel="stylesheet">
<link rel="next" href="ads.html" />
<link rel="prev" href="../chapter_02/env.html" />
</head>
<body>
<div class="book">
<div class="book-summary">
<nav role="navigation">
<ul class="summary">
<li class="chapter " data-level="1.1" data-path="../">
<a href="../">
Project V
</a>
<ul class="articles">
<li class="chapter " data-level="1.1.1" data-path="../chapter_00/01_versions.html">
<a href="../chapter_00/01_versions.html">
版本历史
</a>
</li>
<li class="chapter " data-level="1.1.2" data-path="../chapter_00/workflow.html">
<a href="../chapter_00/workflow.html">
使用方式
</a>
</li>
<li class="chapter " data-level="1.1.3" data-path="../chapter_00/install.html">
<a href="../chapter_00/install.html">
下载安装
</a>
</li>
<li class="chapter " data-level="1.1.4" data-path="../chapter_00/start.html">
<a href="../chapter_00/start.html">
新手上路
</a>
</li>
<li class="chapter " data-level="1.1.5" data-path="../chapter_00/command.html">
<a href="../chapter_00/command.html">
命令行参数
</a>
</li>
<li class="chapter " data-level="1.1.6" data-path="../chapter_00/02_donate.html">
<a href="../chapter_00/02_donate.html">
捐助支持
</a>
</li>
<li class="chapter " data-level="1.1.7" data-path="../chapter_00/help.html">
<a href="../chapter_00/help.html">
寻求帮助
</a>
</li>
<li class="chapter " data-level="1.1.8" data-path="../chapter_00/faq.html">
<a href="../chapter_00/faq.html">
常见问题
</a>
</li>
<li class="chapter " data-level="1.1.9" >
<a target="_blank" href="https://steemit.com/@v2ray">
博客↪
</a>
</li>
<li class="chapter " data-level="1.1.10" >
<a target="_blank" href="https://toutyrater.github.io/">
白话文教程↪
</a>
</li>
<li class="chapter " data-level="1.1.11" >
<a target="_blank" href="https://guide.v2fly.org/">
新白话文教程(社区版)↪
</a>
</li>
</ul>
</li>
<li class="chapter " data-level="1.2" data-path="../chapter_02/">
<a href="../chapter_02/">
配置文件
</a>
<ul class="articles">
<li class="chapter " data-level="1.2.1" data-path="../chapter_02/01_overview.html">
<a href="../chapter_02/01_overview.html">
文件格式
</a>
</li>
<li class="chapter " data-level="1.2.2" data-path="../chapter_02/02_protocols.html">
<a href="../chapter_02/02_protocols.html">
协议列表
</a>
<ul class="articles">
<li class="chapter " data-level="1.2.2.1" data-path="../chapter_02/protocols/blackhole.html">
<a href="../chapter_02/protocols/blackhole.html">
Blackhole
</a>
</li>
<li class="chapter " data-level="1.2.2.2" data-path="../chapter_02/protocols/dns.html">
<a href="../chapter_02/protocols/dns.html">
DNS
</a>
</li>
<li class="chapter " data-level="1.2.2.3" data-path="../chapter_02/protocols/dokodemo.html">
<a href="../chapter_02/protocols/dokodemo.html">
Dokodemo
</a>
</li>
<li class="chapter " data-level="1.2.2.4" data-path="../chapter_02/protocols/freedom.html">
<a href="../chapter_02/protocols/freedom.html">
Freedom
</a>
</li>
<li class="chapter " data-level="1.2.2.5" data-path="../chapter_02/protocols/http.html">
<a href="../chapter_02/protocols/http.html">
HTTP
</a>
</li>
<li class="chapter " data-level="1.2.2.6" data-path="../chapter_02/protocols/mtproto.html">
<a href="../chapter_02/protocols/mtproto.html">
MTProto
</a>
</li>
<li class="chapter " data-level="1.2.2.7" data-path="../chapter_02/protocols/shadowsocks.html">
<a href="../chapter_02/protocols/shadowsocks.html">
Shadowsocks
</a>
</li>
<li class="chapter " data-level="1.2.2.8" data-path="../chapter_02/protocols/socks.html">
<a href="../chapter_02/protocols/socks.html">
SOCKS
</a>
</li>
<li class="chapter " data-level="1.2.2.9" data-path="../chapter_02/protocols/vmess.html">
<a href="../chapter_02/protocols/vmess.html">
VMess
</a>
</li>
</ul>
</li>
<li class="chapter " data-level="1.2.3" data-path="../chapter_02/policy.html">
<a href="../chapter_02/policy.html">
本地策略
</a>
</li>
<li class="chapter " data-level="1.2.4" data-path="../chapter_02/03_routing.html">
<a href="../chapter_02/03_routing.html">
路由配置
</a>
</li>
<li class="chapter " data-level="1.2.5" data-path="../chapter_02/04_dns.html">
<a href="../chapter_02/04_dns.html">
DNS 配置
</a>
</li>
<li class="chapter " data-level="1.2.6" data-path="../chapter_02/mux.html">
<a href="../chapter_02/mux.html">
Mux 配置
</a>
</li>
<li class="chapter " data-level="1.2.7" data-path="../chapter_02/api.html">
<a href="../chapter_02/api.html">
API 配置
</a>
</li>
<li class="chapter " data-level="1.2.8" data-path="../chapter_02/stats.html">
<a href="../chapter_02/stats.html">
统计信息
</a>
</li>
<li class="chapter " data-level="1.2.9" data-path="../chapter_02/reverse.html">
<a href="../chapter_02/reverse.html">
反向代理
</a>
</li>
<li class="chapter " data-level="1.2.10" data-path="../chapter_02/05_transport.html">
<a href="../chapter_02/05_transport.html">
传输配置
</a>
<ul class="articles">
<li class="chapter " data-level="1.2.10.1" data-path="../chapter_02/transport/tcp.html">
<a href="../chapter_02/transport/tcp.html">
TCP
</a>
</li>
<li class="chapter " data-level="1.2.10.2" data-path="../chapter_02/transport/mkcp.html">
<a href="../chapter_02/transport/mkcp.html">
mKCP
</a>
</li>
<li class="chapter " data-level="1.2.10.3" data-path="../chapter_02/transport/websocket.html">
<a href="../chapter_02/transport/websocket.html">
WebSocket
</a>
</li>
<li class="chapter " data-level="1.2.10.4" data-path="../chapter_02/transport/h2.html">
<a href="../chapter_02/transport/h2.html">
HTTP/2
</a>
</li>
<li class="chapter " data-level="1.2.10.5" data-path="../chapter_02/transport/domainsocket.html">
<a href="../chapter_02/transport/domainsocket.html">
DomainSocket
</a>
</li>
<li class="chapter " data-level="1.2.10.6" data-path="../chapter_02/transport/quic.html">
<a href="../chapter_02/transport/quic.html">
QUIC
</a>
</li>
</ul>
</li>
<li class="chapter " data-level="1.2.11" data-path="../chapter_02/env.html">
<a href="../chapter_02/env.html">
环境变量
</a>
</li>
</ul>
</li>
<li class="chapter active" data-level="1.3" data-path="tools.html">
<a href="tools.html">
神一样的工具们
</a>
<ul class="articles">
<li class="chapter " data-level="1.3.1" data-path="ads.html">
<a href="ads.html">
以及广告
</a>
</li>
</ul>
</li>
<li class="chapter " data-level="1.4" data-path="../developer/">
<a href="../developer/">
开发人员手册
</a>
<ul class="articles">
<li class="chapter " data-level="1.4.1" data-path="../developer/intro/roadmap.html">
<a href="../developer/intro/roadmap.html">
开发计划
</a>
</li>
<li class="chapter " data-level="1.4.2" data-path="../developer/intro/guide.html">
<a href="../developer/intro/guide.html">
开发指引
</a>
</li>
<li class="chapter " data-level="1.4.3" data-path="../developer/intro/design.html">
<a href="../developer/intro/design.html">
核心设计
</a>
</li>
<li class="chapter " data-level="1.4.4" data-path="../developer/intro/compile.html">
<a href="../developer/intro/compile.html">
配置开发环境
</a>
</li>
<li class="chapter " data-level="1.4.5" data-path="../developer/intro/tools.html">
<a href="../developer/intro/tools.html">
开发工具
</a>
</li>
<li class="chapter " data-level="1.4.6" >
<span>
协议细节
</span>
<ul class="articles">
<li class="chapter " data-level="1.4.6.1" data-path="../developer/protocols/vmess.html">
<a href="../developer/protocols/vmess.html">
VMess 协议
</a>
</li>
<li class="chapter " data-level="1.4.6.2" data-path="../developer/protocols/mkcp.html">
<a href="../developer/protocols/mkcp.html">
mKCP 协议
</a>
</li>
<li class="chapter " data-level="1.4.6.3" data-path="../developer/protocols/muxcool.html">
<a href="../developer/protocols/muxcool.html">
Mux.Cool
</a>
</li>
</ul>
</li>
</ul>
</li>
<li class="divider"></li>
<li>
<a href="https://www.gitbook.com" target="blank" class="gitbook-link">
本書使用 GitBook 釋出
</a>
</li>
</ul>
</nav>
</div>
<div class="book-body">
<div class="body-inner">
<div class="book-header" role="navigation">
<a class="btn pull-left" href="/awesome/tools.html" target="_blank">
<img src="/resources/flag_cn.svg" alt="Chinese" height="16">
</a>
<a class="btn pull-left" href="/en/awesome/tools.html" target="_blank">
<img src="/resources/flag_en.svg" alt="English" height="16">
</a>
<a class="btn pull-left" href="/ru/awesome/tools.html" target="_blank">
<img src="/resources/flag_ru.svg" alt="Russian" height="16">
</a>
<a class="btn pull-left" href="/ko/awesome/tools.html" target="_blank">
<img src="/resources/flag_ko.svg" alt="Korean" height="16">
</a>
<a class="btn pull-left" href="/fa/awesome/tools.html" target="_blank">
<img src="/resources/flag_fa.svg" alt="Persian" height="16">
</a>
<a class="btn pull-left" href="/vi/awesome/tools.html" target="_blank">
<img src="/resources/flag_vi.svg" alt="Vietnamese" height="16">
</a>
<a class="btn pull-left" href="https://crowdin.com/project/v2ray" target="_blank">
<img src="/resources/translate.png" alt="Translate" height="16">
</a>
</div>
<div class="page-wrapper" tabindex="-1" role="main">
<div class="page-inner">
<section class="normal markdown-section">
<h1 id="神一样的工具们"><a name="神一样的工具们" class="plugin-anchor" href="#神一样的工具们"><i class="fa fa-link" aria-hidden="true"></i></a>神一样的工具们</h1>
<h2 id="windows"><a name="windows" class="plugin-anchor" href="#windows"><i class="fa fa-link" aria-hidden="true"></i></a>图形客户端 </h2>
<blockquote>
<p>V2RayW <img width="20" src="../resources/win.svg"></p>
</blockquote>
<p>V2RayW 是一个基于 V2Ray 内核的 Windows 客户端。用户可以通过界面生成配置文件,并且可以手动更新 V2Ray 内核。下载:<a href="https://github.com/Cenmrev/V2RayW" target="_blank">GitHub</a></p>
<blockquote>
<p>V2RayN <img width="20" src="../resources/win.svg"></p>
</blockquote>
<p>V2RayN 是一个基于 V2Ray 内核的 Windows 客户端。下载:<a href="https://github.com/2dust/v2rayN" target="_blank">GitHub</a></p>
<blockquote>
<p>Clash for Windows <img width="20" src="../resources/win.svg"></p>
</blockquote>
<p>下载:<a href="https://github.com/Fndroid/clash_for_windows_pkg" target="_blank">GitHub</a></p>
<blockquote>
<p>V2RayX <img width="20" src="../resources/apple.svg"></p>
</blockquote>
<p>V2RayX 是一个基于 V2Ray 内核的 Mac OS X 客户端。用户可以通过界面生成配置文件,并且可以手动更新 V2Ray 内核。V2RayX 还可以配置系统代理。下载:<a href="https://github.com/Cenmrev/V2RayX" target="_blank">Github</a></p>
<blockquote>
<p>V2RayU <img width="20" src="../resources/apple.svg"></p>
</blockquote>
<p>V2rayU,基于v2ray核心的mac版客户端,界面友好,使用swift4.2编写,支持vmess,shadowsocks,socks5等服务协议,支持订阅, 支持二维码,剪贴板导入,手动配置,二维码分享等。下载:<a href="https://github.com/yanue/V2rayU" target="_blank">GitHub</a></p>
<blockquote>
<p>V2RayC <img width="20" src="../resources/apple.svg"></p>
</blockquote>
<p>下载:<a href="https://github.com/gssdromen/V2RayC" target="_blank">GitHub</a></p>
<blockquote>
<p>ClashX <img width="20" src="../resources/apple.svg"></p>
</blockquote>
<p>下载:<a href="https://github.com/yichengchen/clashX" target="_blank">GitHub</a></p>
<blockquote>
<p>Qv2ray <img width="20" src="../resources/win.svg"> <img width="20" src="../resources/apple.svg"> <img width="20" src="../resources/linux.svg"></p>
</blockquote>
<p>Qv2ray:使用 Qt 编写的 v2ray 跨平台 GUI (MacOS, Windows, Linux)支持连接导入和编辑,中英文切换</p>
<p>下载:<a href="https://github.com/lhy0403/Qv2ray" target="_blank">GitHub</a></p>
<p>官网:<a href="https://lhy0403.github.io/Qv2ray" target="_blank">https://lhy0403.github.io/Qv2ray</a></p>
<blockquote>
<p>Mellow <img width="20" src="../resources/win.svg"> <img width="20" src="../resources/apple.svg"> <img width="20" src="../resources/linux.svg"></p>
</blockquote>
<p>Mellow 是一个基于规则的全局透明代理工具,可以运行在 Windows、macOS 和 Linux 上,也可以配置成路由器透明代理或代理网关,支持 SOCKS、HTTP、Shadowsocks、VMess 等多种代理协议。</p>
<p>Download: <a href="https://github.com/mellow-io/mellow" target="_blank">Github</a></p>
<blockquote>
<p>Kitsunebi <img width="20" src="../resources/ios.svg"> <img width="20" src="../resources/android.svg"></p>
</blockquote>
<p>Kitsunebi 是一个基于 V2Ray 核心的移动平台应用 (iOS, Android)。它可以创建基于 VMess 或者 Shadowsocks 的 VPN 连接。Kitsunebi 支持导入和导出与 V2Ray 兼容的 JSON 配置。</p>
<p>由于使用 V2Ray 核心,Kitsunebi 几乎支持 V2Ray 的所有功能,比如 Mux 和 mKCP。</p>
<p>下载:<a href="https://itunes.apple.com/us/app/kitsunebi-proxy-utility/id1446584073?mt=8" target="_blank">iTunes</a> | <a href="https://play.google.com/store/apps/details?id=fun.kitsunebi.kitsunebi4android&hl=en_US" target="_blank">Play Store</a></p>
<blockquote>
<p>i2Ray <img width="20" src="../resources/ios.svg"></p>
</blockquote>
<p>i2Ray 是另一款基于 V2Ray 核心的iOS应用。界面简洁易用,适合新手用户使用。同时兼容Shadowrocket和Quantumult格式的规则导入。</p>
<p>下载:<a href="https://itunes.apple.com/us/app/i2ray/id1445270056?mt=8" target="_blank">iTunes</a></p>
<blockquote>
<p>Shadowrocket <img width="20" src="../resources/ios.svg"></p>
</blockquote>
<p>Shadowrocket 是一个通用的 iOS VPN 应用,它支持众多协议,如 Shadowsocks、VMess、SSR 等。</p>
<p>下载:<a href="https://itunes.apple.com/us/app/shadowrocket/id932747118?mt=8" target="_blank">iTunes</a></p>
<blockquote>
<p>Pepi(原名ShadowRay)<img width="20" src="../resources/ios.svg"></p>
</blockquote>
<p>Pepi 是一个兼容 V2Ray 的 iOS 应用,它可以创建基于 VMess 的 VPN 连接,并与 V2Ray 服务器通信。</p>
<p>下载:<a href="https://itunes.apple.com/us/app/pepi/id1283082051?mt=8" target="_blank">iTunes</a></p>
<blockquote>
<p>Quantumult <img width="20" src="../resources/ios.svg"></p>
</blockquote>
<p>下载:<a href="https://itunes.apple.com/us/app/quantumult/id1252015438?mt=8" target="_blank">iTunes</a></p>
<blockquote>
<p>BifrostV <img width="20" src="../resources/android.svg"></p>
</blockquote>
<p>BifrostV 是一个基于 V2Ray 内核的 Android 应用,它支持 VMess、Shadowsocks、Socks 协议。</p>
<p>下载:<a href="https://play.google.com/store/apps/details?id=com.github.dawndiy.bifrostv" target="_blank">Play Store</a> | <a href="https://apkpure.com/bifrostv/com.github.dawndiy.bifrostv" target="_blank">APK Pure</a></p>
<blockquote>
<p>V2RayNG <img width="20" src="../resources/android.svg"></p>
</blockquote>
<p>V2RayNG 是一个基于 V2Ray 内核的 Android 应用,它可以创建基于 VMess 的 VPN 连接。</p>
<p>下载:<a href="https://play.google.com/store/apps/details?id=com.v2ray.ang" target="_blank">Play Store</a> | <a href="https://github.com/2dust/v2rayNG" target="_blank">GitHub</a></p>
<h2 id="online"><a name="online" class="plugin-anchor" href="#online"><i class="fa fa-link" aria-hidden="true"></i></a>在线工具/资源 </h2>
<blockquote>
<p>VeekXT V2Ray配置生成</p>
</blockquote>
<p>支持 4.x 版本的配置文件生成器 <a href="https://www.veekxt.com/utils/v2ray_gen" target="_blank">veekxt.com</a></p>
<blockquote>
<p>V2Ray 配置生成器</p>
</blockquote>
<p>静态 V2Ray 配置文件生成页面 <a href="https://github.com/htfy96/v2ray-config-gen" target="_blank">GitHub</a></p>
<blockquote>
<p>UUID Generator</p>
</blockquote>
<p>VMess User ID 生成工具 <a href="https://www.uuidtools.com" target="_blank">uuidtools.com</a></p>
<blockquote>
<p>vTemplate 项目仓库</p>
</blockquote>
<p>一个 V2Ray 配置文件模板收集仓库 <a href="https://github.com/KiriKira/vTemplate" target="_blank">GitHub</a></p>
</section>
</div>
</div>
</div>
</div>
<script>
var gitbook = gitbook || [];
gitbook.push(function() {
gitbook.page.hasChanged({"page":{"refcn":"awesome/tools","refen":"awesome/tools","title":"神一样的工具们","level":"1.3","depth":1,"next":{"title":"以及广告","level":"1.3.1","depth":2,"path":"awesome/ads.md","ref":"awesome/ads.md","articles":[]},"previous":{"title":"环境变量","level":"1.2.11","depth":2,"path":"chapter_02/env.md","ref":"chapter_02/env.md","articles":[]},"dir":"ltr"},"config":{"plugins":["-fontsettings","-search","-lunr","-highlight","-sharing","mermaid-gb3","anchors","ga","prism","prism-themes","hints"],"styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"pluginsConfig":{"ga":{"configuration":"auto","token":"UA-73620536-1"},"prism":{"css":["prism-themes/themes/prism-base16-ateliersulphurpool.light.css"],"lang":{"objc":"objectivec","shell":"bash","text":"textile","plain":"textile"}},"mermaid-gb3":{},"anchors":{},"prism-themes":{},"hints":{"danger":"fa fa-exclamation-circle","info":"fa fa-info-circle","tip":"fa fa-mortar-board","working":"fa fa-wrench"},"theme-default":{"styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"showLevel":false}},"theme":"default","pdf":{"pageNumbers":true,"fontSize":12,"fontFamily":"Arial","paperSize":"a4","chapterMark":"pagebreak","pageBreaksBefore":"/","margin":{"right":62,"left":62,"top":56,"bottom":56}},"structure":{"langs":"LANGS.md","readme":"README.md","glossary":"GLOSSARY.md","summary":"SUMMARY.md"},"variables":{},"title":"Project V 官方网站","language":"zh","gitbook":"*"},"file":{"path":"awesome/tools.md","mtime":"2019-12-09T02:03:16.155Z","type":"markdown"},"gitbook":{"version":"3.2.3","time":"2019-12-09T02:05:14.919Z"},"basePath":"..","book":{"language":""}});
});
</script>
</div>
<script src="../gitbook/gitbook.js"></script>
<script src="../gitbook/theme.js"></script>
<script src="../gitbook/gitbook-plugin-mermaid-gb3/book/plugin.js"></script>
<script src="../gitbook/gitbook-plugin-ga/plugin.js"></script>