-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathscripts.json
More file actions
5258 lines (5258 loc) · 295 KB
/
scripts.json
File metadata and controls
5258 lines (5258 loc) · 295 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
{
"scripts": [
{
"id": "123_____user",
"names": {
"zh-CN": "123云盘会员",
"zh-TW": "123雲盤會員",
"en": "123 cloud disk membership"
},
"descriptions": {
"zh-CN": "专业的123云盘增强脚本 - 完美解锁会员功能、突破下载限制、去广告、支持自定义用户信息。支持个人网盘与分享页面,可在线配置,界面精美,功能强大,让你的123云盘体验更美好!",
"zh-TW": "專業的123雲盤增強腳本 - 完美解鎖會員功能、突破下載限制、去廣告、支持自定義用戶信息。支持個人網盤與分享頁面,可在線配置,界面精美,功能強大,讓你的123雲盤體驗更美好!",
"en": "Professional 123 cloud disk enhancement script - perfectly unlocks membership functions, breaks download restrictions, removes ads, and supports customized user information. It supports personal network disk and sharing pages, can be configured online, has a beautiful interface and powerful functions, making your 123 cloud disk experience better!"
},
"details": {
"zh-CN": "专业的123云盘增强脚本 - 完美解锁会员功能、突破下载限制、去广告、支持自定义用户信息。支持个人网盘与分享页面,可在线配置,界面精美,功能强大,让你的123云盘体验更美好!",
"zh-TW": "專業的123雲盤增強腳本 - 完美解鎖會員功能、突破下載限制、去廣告、支持自定義用戶信息。支持個人網盤與分享頁面,可在線配置,界面精美,功能強大,讓你的123雲盤體驗更美好!",
"en": "Professional 123 cloud disk enhancement script - perfectly unlocks membership functions, breaks download restrictions, removes ads, and supports customized user information. It supports personal network disk and sharing pages, can be configured online, has a beautiful interface and powerful functions, making your 123 cloud disk experience better!"
},
"downloadUrls": {
"渠道1": "https://gitee.com/jiguro/BetterVia/raw/master/Script/123云盘会员.user.js",
"渠道2": "https://raw.githubusercontent.com/JiGuroLGC/BetterVia/main/Script/123云盘会员.user.js"
},
"category": "其他类"
},
{
"id": "n_lib_10_user",
"names": {
"zh-CN": "N-lib",
"zh-TW": "N-lib",
"en": "N-lib"
},
"descriptions": {
"zh-CN": "暂无描述",
"zh-TW": "暫無描述",
"en": "No description yet"
},
"details": {
"zh-CN": "暂无描述",
"zh-TW": "暫無描述",
"en": "No description yet"
},
"downloadUrls": {
"渠道1": "https://gitee.com/jiguro/BetterVia/raw/master/Script/n-lib-10.user.js",
"渠道2": "https://raw.githubusercontent.com/JiGuroLGC/BetterVia/main/Script/n-lib-10.user.js"
},
"category": "其他类"
},
{
"id": "___________user",
"names": {
"zh-CN": "Zhihu Desktop on Mobile",
"zh-TW": "Zhihu Desktop on Mobile",
"en": "Zhihu Desktop on Mobile"
},
"descriptions": {
"zh-CN": "Use full-featured desktop web zhihu on your phone.",
"zh-TW": "Use full-featured desktop web zhihu on your phone.",
"en": "Use full-featured desktop web zhihu on your phone."
},
"details": {
"zh-CN": "Use full-featured desktop web zhihu on your phone.",
"zh-TW": "Use full-featured desktop web zhihu on your phone.",
"en": "Use full-featured desktop web zhihu on your phone."
},
"downloadUrls": {
"渠道1": "https://gitee.com/jiguro/BetterVia/raw/master/Script/知乎桌面版适配移动端.user.js",
"渠道2": "https://raw.githubusercontent.com/JiGuroLGC/BetterVia/main/Script/知乎桌面版适配移动端.user.js"
},
"category": "其他类"
},
{
"id": "bilibili_____________________37_user",
"names": {
"zh-CN": "Bilibili - 在未登录的情况下自动并无限试用最高画质",
"zh-TW": "Bilibili - 在未登錄的情況下自動並無限試用最高畫質",
"en": "Bilibili - Automatically and unlimitedly try the highest quality without logging in"
},
"descriptions": {
"zh-CN": "在未登录的情况下自动并无限试用最高画质 | V1.5 代码优化 & 新增自定义设置面板",
"zh-TW": "在未登錄的情況下自動並無限試用最高畫質 | V1.5 代碼優化 & 新增自定義設置面板",
"en": "Automatically and unlimitedly try the highest image quality without logging in | V1.5 code optimization & new custom settings panel"
},
"details": {
"zh-CN": "在未登录的情况下自动并无限试用最高画质 | V1.5 代码优化 & 新增自定义设置面板",
"zh-TW": "在未登錄的情況下自動並無限試用最高畫質 | V1.5 代碼優化 & 新增自定義設置面板",
"en": "Automatically and unlimitedly try the highest image quality without logging in | V1.5 code optimization & new custom settings panel"
},
"downloadUrls": {
"渠道1": "https://gitee.com/jiguro/BetterVia/raw/master/Script/bilibili-在未登录的情况下自动并无限试用最高画质-37.user.js",
"渠道2": "https://raw.githubusercontent.com/JiGuroLGC/BetterVia/main/Script/bilibili-在未登录的情况下自动并无限试用最高画质-37.user.js"
},
"category": "其他类"
},
{
"id": "bilibili_____41_user",
"names": {
"zh-CN": "bilibili视频下载",
"zh-TW": "bilibili視頻下載",
"en": "bilibili video download"
},
"descriptions": {
"zh-CN": "支持Web、RPC、Blob、Aria等下载方式;支持下载flv、dash、mp4视频格式;支持下载港区番剧;支持下载字幕弹幕;支持换源播放等功能",
"zh-TW": "支持Web、RPC、Blob、Aria等下載方式;支持下載flv、dash、mp4視頻格式;支持下載港區番劇;支持下載字幕彈幕;支持換源播放等功能",
"en": "Supports downloading methods such as Web, RPC, Blob, Aria; supports downloading flv, dash, mp4 video formats; supports downloading Minato dramas; supports downloading subtitle barrages; supports changing source playback and other functions"
},
"details": {
"zh-CN": "支持Web、RPC、Blob、Aria等下载方式;支持下载flv、dash、mp4视频格式;支持下载港区番剧;支持下载字幕弹幕;支持换源播放等功能",
"zh-TW": "支持Web、RPC、Blob、Aria等下載方式;支持下載flv、dash、mp4視頻格式;支持下載港區番劇;支持下載字幕彈幕;支持換源播放等功能",
"en": "Supports downloading methods such as Web, RPC, Blob, Aria; supports downloading flv, dash, mp4 video formats; supports downloading Minato dramas; supports downloading subtitle barrages; supports changing source playback and other functions"
},
"downloadUrls": {
"渠道1": "https://gitee.com/jiguro/BetterVia/raw/master/Script/bilibili视频下载-41.user.js",
"渠道2": "https://raw.githubusercontent.com/JiGuroLGC/BetterVia/main/Script/bilibili视频下载-41.user.js"
},
"category": "其他类"
},
{
"id": "csdn_____54_user",
"names": {
"zh-CN": "CSDN超强防护",
"zh-TW": "CSDN超強防護",
"en": "CSDN super protection"
},
"descriptions": {
"zh-CN": "手机端专用!自动展开全部内容,免登录复制,去除广告,增加搜索框,手机端专用。",
"zh-TW": "手機端專用!自動展開全部內容,免登錄複製,去除廣告,增加搜索框,手機端專用。",
"en": "Exclusively for mobile phones! Automatically expand all content, no need to log in to copy, remove ads, add search box, exclusive for mobile phones."
},
"details": {
"zh-CN": "手机端专用!自动展开全部内容,免登录复制,去除广告,增加搜索框,手机端专用。",
"zh-TW": "手機端專用!自動展開全部內容,免登錄複製,去除廣告,增加搜索框,手機端專用。",
"en": "Exclusively for mobile phones! Automatically expand all content, no need to log in to copy, remove ads, add search box, exclusive for mobile phones."
},
"downloadUrls": {
"渠道1": "https://gitee.com/jiguro/BetterVia/raw/master/Script/csdn超强防护-54.user.js",
"渠道2": "https://raw.githubusercontent.com/JiGuroLGC/BetterVia/main/Script/csdn超强防护-54.user.js"
},
"category": "其他类"
},
{
"id": "bilibili_____lite_57_user",
"names": {
"zh-CN": "Bilibili Mobile Lite",
"zh-TW": "Bilibili Mobile Lite",
"en": "Bilibili Mobile Lite"
},
"descriptions": {
"zh-CN": "view bilibili mobile page recommended video directly",
"zh-TW": "view bilibili mobile page recommended video directly",
"en": "view bilibili mobile page recommended video directly"
},
"details": {
"zh-CN": "view bilibili mobile page recommended video directly",
"zh-TW": "view bilibili mobile page recommended video directly",
"en": "view bilibili mobile page recommended video directly"
},
"downloadUrls": {
"渠道1": "https://gitee.com/jiguro/BetterVia/raw/master/Script/bilibili-移动端-lite-57.user.js",
"渠道2": "https://raw.githubusercontent.com/JiGuroLGC/BetterVia/main/Script/bilibili-移动端-lite-57.user.js"
},
"category": "其他类"
},
{
"id": "csdn___53_user",
"names": {
"zh-CN": "CSDN优化",
"zh-TW": "CSDN優化",
"en": "CSDN optimization"
},
"descriptions": {
"zh-CN": "支持PC和手机端、屏蔽广告、优化浏览体验、重定向拦截的Url、自动展开全文、自动展开代码块、全文居中、允许复制内容、去除复制内容的小尾巴、自定义屏蔽元素等",
"zh-TW": "支持PC和手機端、屏蔽廣告、優化瀏覽體驗、重定向攔截的Url、自動展開全文、自動展開代碼塊、全文居中、允許複製內容、去除複製內容的小尾巴、自定義屏蔽元素等",
"en": "Support PC and mobile phones, block ads, optimize browsing experience, redirect blocked URLs, automatically expand full text, automatically expand code blocks, center full text, allow copied content, remove tails of copied content, customize blocking elements, etc."
},
"details": {
"zh-CN": "支持PC和手机端、屏蔽广告、优化浏览体验、重定向拦截的Url、自动展开全文、自动展开代码块、全文居中、允许复制内容、去除复制内容的小尾巴、自定义屏蔽元素等",
"zh-TW": "支持PC和手機端、屏蔽廣告、優化瀏覽體驗、重定向攔截的Url、自動展開全文、自動展開代碼塊、全文居中、允許複製內容、去除複製內容的小尾巴、自定義屏蔽元素等",
"en": "Support PC and mobile phones, block ads, optimize browsing experience, redirect blocked URLs, automatically expand full text, automatically expand code blocks, center full text, allow copied content, remove tails of copied content, customize blocking elements, etc."
},
"downloadUrls": {
"渠道1": "https://gitee.com/jiguro/BetterVia/raw/master/Script/csdn优化-53.user.js",
"渠道2": "https://raw.githubusercontent.com/JiGuroLGC/BetterVia/main/Script/csdn优化-53.user.js"
},
"category": "其他类"
},
{
"id": "bilibili_____56_user",
"names": {
"zh-CN": "bilibili 移动端",
"zh-TW": "bilibili 移動端",
"en": "bilibili mobile version"
},
"descriptions": {
"zh-CN": "Safari打开电脑模式,其它浏览器关闭电脑模式修改网站UA,获取舒适的移动端体验。",
"zh-TW": "Safari打開電腦模式,其它瀏覽器關閉電腦模式修改網站UA,獲取舒適的移動端體驗。",
"en": "Safari turns on the computer mode, other browsers turn off the computer mode and modify the website UA to obtain a comfortable mobile experience."
},
"details": {
"zh-CN": "Safari打开电脑模式,其它浏览器关闭电脑模式修改网站UA,获取舒适的移动端体验。",
"zh-TW": "Safari打開電腦模式,其它瀏覽器關閉電腦模式修改網站UA,獲取舒適的移動端體驗。",
"en": "Safari turns on the computer mode, other browsers turn off the computer mode and modify the website UA to obtain a comfortable mobile experience."
},
"downloadUrls": {
"渠道1": "https://gitee.com/jiguro/BetterVia/raw/master/Script/bilibili-移动端-56.user.js",
"渠道2": "https://raw.githubusercontent.com/JiGuroLGC/BetterVia/main/Script/bilibili-移动端-56.user.js"
},
"category": "其他类"
},
{
"id": "csdn_____9_user",
"names": {
"zh-CN": "CSDN自动展开",
"zh-TW": "CSDN自動展開",
"en": "CSDN automatically expands"
},
"descriptions": {
"zh-CN": "暂无描述",
"zh-TW": "暫無描述",
"en": "No description yet"
},
"details": {
"zh-CN": "暂无描述",
"zh-TW": "暫無描述",
"en": "No description yet"
},
"downloadUrls": {
"渠道1": "https://gitee.com/jiguro/BetterVia/raw/master/Script/csdn自动展开-9.user.js",
"渠道2": "https://raw.githubusercontent.com/JiGuroLGC/BetterVia/main/Script/csdn自动展开-9.user.js"
},
"category": "其他类"
},
{
"id": "bilibili___________8k______hdr_______pro_42_user",
"names": {
"zh-CN": "Bilibili 解鎖杜比全景聲 & 8K & 開啟 HDR & 直播畫質PRO",
"zh-TW": "Bilibili 解鎖杜比全景聲 & 8K & 開啟 HDR & 直播畫質PRO",
"en": "Bilibili unlocks Dolby Atmos & 8K & turns on HDR & live broadcast quality PRO"
},
"descriptions": {
"zh-CN": "為 B站 Windows 平台 解鎖杜比全景聲 & 8K &開啟 HDR &直播畫質PRO",
"zh-TW": "為 B站 Windows 平臺 解鎖杜比全景聲 & 8K &開啟 HDR &直播畫質PRO",
"en": "Unlock Dolby Atmos & 8K & turn on HDR & Live Broadcast Quality PRO for Bilibili Windows platform"
},
"details": {
"zh-CN": "為 B站 Windows 平台 解鎖杜比全景聲 & 8K &開啟 HDR &直播畫質PRO",
"zh-TW": "為 B站 Windows 平臺 解鎖杜比全景聲 & 8K &開啟 HDR &直播畫質PRO",
"en": "Unlock Dolby Atmos & 8K & turn on HDR & Live Broadcast Quality PRO for Bilibili Windows platform"
},
"downloadUrls": {
"渠道1": "https://gitee.com/jiguro/BetterVia/raw/master/Script/bilibili-解锁杜比全景声-&-8k-&-开启-hdr-&-直播画质pro-42.user.js",
"渠道2": "https://raw.githubusercontent.com/JiGuroLGC/BetterVia/main/Script/bilibili-解锁杜比全景声-&-8k-&-开启-hdr-&-直播画质pro-42.user.js"
},
"category": "其他类"
},
{
"id": "bilibili_________________39_user",
"names": {
"zh-CN": "Bilibili - 防止在首页下拉刷新时被要求登录",
"zh-TW": "Bilibili - 防止在首頁下拉刷新時被要求登錄",
"en": "Bilibili - Prevent being asked to log in when pulling down to refresh the homepage"
},
"descriptions": {
"zh-CN": "防止在首页下拉刷新时被要求登录",
"zh-TW": "防止在首頁下拉刷新時被要求登錄",
"en": "Prevent being asked to log in when pulling down to refresh the homepage"
},
"details": {
"zh-CN": "防止在首页下拉刷新时被要求登录",
"zh-TW": "防止在首頁下拉刷新時被要求登錄",
"en": "Prevent being asked to log in when pulling down to refresh the homepage"
},
"downloadUrls": {
"渠道1": "https://gitee.com/jiguro/BetterVia/raw/master/Script/bilibili-防止在首页下拉刷新时被要求登录-39.user.js",
"渠道2": "https://raw.githubusercontent.com/JiGuroLGC/BetterVia/main/Script/bilibili-防止在首页下拉刷新时被要求登录-39.user.js"
},
"category": "其他类"
},
{
"id": "disable_youtube_autopause_68_user",
"names": {
"zh-CN": "Disable YouTube AutoPause",
"zh-TW": "Disable YouTube AutoPause",
"en": "Disable YouTube AutoPause"
},
"descriptions": {
"zh-CN": "\"Video paused. Continue watching?\" and \"Still watching? Video will pause soon\" will not appear anymore.",
"zh-TW": "\"Video paused. Continue watching?\" and \"Still watching? Video will pause soon\" will not appear anymore.",
"en": "\"Video paused. Continue watching?\" and \"Still watching? Video will pause soon\" will not appear anymore."
},
"details": {
"zh-CN": "\"Video paused. Continue watching?\" and \"Still watching? Video will pause soon\" will not appear anymore.",
"zh-TW": "\"Video paused. Continue watching?\" and \"Still watching? Video will pause soon\" will not appear anymore.",
"en": "\"Video paused. Continue watching?\" and \"Still watching? Video will pause soon\" will not appear anymore."
},
"downloadUrls": {
"渠道1": "https://gitee.com/jiguro/BetterVia/raw/master/Script/disable-youtube-autopause-68.user.js",
"渠道2": "https://raw.githubusercontent.com/JiGuroLGC/BetterVia/main/Script/disable-youtube-autopause-68.user.js"
},
"category": "其他类"
},
{
"id": "github_________7_user",
"names": {
"zh-CN": "Github Enhancement - High Speed Download",
"zh-TW": "Github Enhancement - High Speed Download",
"en": "Github Enhancement - High Speed Download"
},
"descriptions": {
"zh-CN": "High-speed download of Git Clone/SSH, Release, Raw, Code(ZIP) and other files (Based on public welfare), project list file quick download (☁)",
"zh-TW": "High-speed download of Git Clone/SSH, Release, Raw, Code(ZIP) and other files (Based on public welfare), project list file quick download (☁)",
"en": "High-speed download of Git Clone/SSH, Release, Raw, Code(ZIP) and other files (Based on public welfare), project list file quick download (☁)"
},
"details": {
"zh-CN": "High-speed download of Git Clone/SSH, Release, Raw, Code(ZIP) and other files (Based on public welfare), project list file quick download (☁)",
"zh-TW": "High-speed download of Git Clone/SSH, Release, Raw, Code(ZIP) and other files (Based on public welfare), project list file quick download (☁)",
"en": "High-speed download of Git Clone/SSH, Release, Raw, Code(ZIP) and other files (Based on public welfare), project list file quick download (☁)"
},
"downloadUrls": {
"渠道1": "https://gitee.com/jiguro/BetterVia/raw/master/Script/github-增强-高速下载-7.user.js",
"渠道2": "https://raw.githubusercontent.com/JiGuroLGC/BetterVia/main/Script/github-增强-高速下载-7.user.js"
},
"category": "其他类"
},
{
"id": "github_______43_user",
"names": {
"zh-CN": "GitHub 中文化插件",
"zh-TW": "GitHub 中文化插件",
"en": "GitHub Chinese culture plug-in"
},
"descriptions": {
"zh-CN": "中文化 GitHub 界面的部分菜单及内容。原作者为楼教主(http://www.52cik.com/)。",
"zh-TW": "中文化 GitHub 界面的部分菜單及內容。原作者為樓教主(http://www.52cik.com/)。",
"en": "Some menus and contents of the Chinese GitHub interface. The original author is Leader Lou (http://www.52cik.com/)."
},
"details": {
"zh-CN": "中文化 GitHub 界面的部分菜单及内容。原作者为楼教主(http://www.52cik.com/)。",
"zh-TW": "中文化 GitHub 界面的部分菜單及內容。原作者為樓教主(http://www.52cik.com/)。",
"en": "Some menus and contents of the Chinese GitHub interface. The original author is Leader Lou (http://www.52cik.com/)."
},
"downloadUrls": {
"渠道1": "https://gitee.com/jiguro/BetterVia/raw/master/Script/github-中文化插件-43.user.js",
"渠道2": "https://raw.githubusercontent.com/JiGuroLGC/BetterVia/main/Script/github-中文化插件-43.user.js"
},
"category": "其他类"
},
{
"id": "github_____2_user",
"names": {
"zh-CN": "GitHub Internationalization",
"zh-TW": "GitHub Internationalization",
"en": "GitHub Internationalization"
},
"descriptions": {
"zh-CN": "Translate GitHub.com",
"zh-TW": "Translate GitHub.com",
"en": "Translate GitHub.com"
},
"details": {
"zh-CN": "Translate GitHub.com",
"zh-TW": "Translate GitHub.com",
"en": "Translate GitHub.com"
},
"downloadUrls": {
"渠道1": "https://gitee.com/jiguro/BetterVia/raw/master/Script/github汉化插件-2.user.js",
"渠道2": "https://raw.githubusercontent.com/JiGuroLGC/BetterVia/main/Script/github汉化插件-2.user.js"
},
"category": "其他类"
},
{
"id": "github_______1_user",
"names": {
"zh-CN": "github一键在线编辑",
"zh-TW": "github一鍵在線編輯",
"en": "Github one-click online editing"
},
"descriptions": {
"zh-CN": "github一键跳转在线编辑,实现在网页端上通过线上vsCode直观的对代码进行浏览与编译",
"zh-TW": "github一鍵跳轉在線編輯,實現在網頁端上通過線上vsCode直觀的對代碼進行瀏覽與編譯",
"en": "Github jumps to online editing with one click, enabling intuitive browsing and compilation of code through online vsCode on the web page."
},
"details": {
"zh-CN": "github一键跳转在线编辑,实现在网页端上通过线上vsCode直观的对代码进行浏览与编译",
"zh-TW": "github一鍵跳轉在線編輯,實現在網頁端上通過線上vsCode直觀的對代碼進行瀏覽與編譯",
"en": "Github jumps to online editing with one click, enabling intuitive browsing and compilation of code through online vsCode on the web page."
},
"downloadUrls": {
"渠道1": "https://gitee.com/jiguro/BetterVia/raw/master/Script/github一键在线编辑-1.user.js",
"渠道2": "https://raw.githubusercontent.com/JiGuroLGC/BetterVia/main/Script/github一键在线编辑-1.user.js"
},
"category": "其他类"
},
{
"id": "greasyfork___55_user",
"names": {
"zh-CN": "GreasyFork优化",
"zh-TW": "GreasyFork優化",
"en": "GreasyFork optimization"
},
"descriptions": {
"zh-CN": "自动登录账号、快捷寻找自己库被其他脚本引用、更新自己的脚本列表、库、优化图片浏览、美化页面、Markdown复制按钮",
"zh-TW": "自動登錄賬號、快捷尋找自己庫被其他腳本引用、更新自己的腳本列表、庫、優化圖片瀏覽、美化頁面、Markdown複製按鈕",
"en": "Automatically log in to your account, quickly find your own library referenced by other scripts, update your own script list and library, optimize image browsing, beautify the page, Markdown copy button"
},
"details": {
"zh-CN": "自动登录账号、快捷寻找自己库被其他脚本引用、更新自己的脚本列表、库、优化图片浏览、美化页面、Markdown复制按钮",
"zh-TW": "自動登錄賬號、快捷尋找自己庫被其他腳本引用、更新自己的腳本列表、庫、優化圖片瀏覽、美化頁面、Markdown複製按鈕",
"en": "Automatically log in to your account, quickly find your own library referenced by other scripts, update your own script list and library, optimize image browsing, beautify the page, Markdown copy button"
},
"downloadUrls": {
"渠道1": "https://gitee.com/jiguro/BetterVia/raw/master/Script/greasyfork优化-55.user.js",
"渠道2": "https://raw.githubusercontent.com/JiGuroLGC/BetterVia/main/Script/greasyfork优化-55.user.js"
},
"category": "其他类"
},
{
"id": "h5______8_user",
"names": {
"zh-CN": "H5视频调速器",
"zh-TW": "H5視頻調速器",
"en": "H5 video speed controller"
},
"descriptions": {
"zh-CN": "暂无描述",
"zh-TW": "暫無描述",
"en": "No description yet"
},
"details": {
"zh-CN": "暂无描述",
"zh-TW": "暫無描述",
"en": "No description yet"
},
"downloadUrls": {
"渠道1": "https://gitee.com/jiguro/BetterVia/raw/master/Script/h5视频调速器-8.user.js",
"渠道2": "https://raw.githubusercontent.com/JiGuroLGC/BetterVia/main/Script/h5视频调速器-8.user.js"
},
"category": "其他类"
},
{
"id": "pure_______30_user",
"names": {
"zh-CN": "pure百度美化皮肤",
"zh-TW": "pure百度美化皮膚",
"en": "pureBaidu beautifies skin"
},
"descriptions": {
"zh-CN": "暂无描述",
"zh-TW": "暫無描述",
"en": "No description yet"
},
"details": {
"zh-CN": "暂无描述",
"zh-TW": "暫無描述",
"en": "No description yet"
},
"downloadUrls": {
"渠道1": "https://gitee.com/jiguro/BetterVia/raw/master/Script/pure百度美化皮肤-30.user.js",
"渠道2": "https://raw.githubusercontent.com/JiGuroLGC/BetterVia/main/Script/pure百度美化皮肤-30.user.js"
},
"category": "其他类"
},
{
"id": "quark_download_78_user",
"names": {
"zh-CN": "Quark Download",
"zh-TW": "Quark Download",
"en": "Quark Download"
},
"descriptions": {
"zh-CN": "点击鼠标中键直接下载夸克网盘内容,无需下载客户端",
"zh-TW": "點擊鼠標中鍵直接下載夸克網盤內容,無需下載客戶端",
"en": "Click the middle mouse button to directly download Quark network disk content without downloading the client."
},
"details": {
"zh-CN": "点击鼠标中键直接下载夸克网盘内容,无需下载客户端",
"zh-TW": "點擊鼠標中鍵直接下載夸克網盤內容,無需下載客戶端",
"en": "Click the middle mouse button to directly download Quark network disk content without downloading the client."
},
"downloadUrls": {
"渠道1": "https://gitee.com/jiguro/BetterVia/raw/master/Script/quark-download-78.user.js",
"渠道2": "https://raw.githubusercontent.com/JiGuroLGC/BetterVia/main/Script/quark-download-78.user.js"
},
"category": "其他类"
},
{
"id": "twitter_kaizen_72_user",
"names": {
"zh-CN": "Twitter kaizen",
"zh-TW": "Twitter kaizen",
"en": "Twitter kaizen"
},
"descriptions": {
"zh-CN": "Twitterの表示を改善するスクリプト",
"zh-TW": "Twitterの表示を改善するスクリプト",
"en": "Twitter's expression is to improve"
},
"details": {
"zh-CN": "Twitterの表示を改善するスクリプト",
"zh-TW": "Twitterの表示を改善するスクリプト",
"en": "Twitter's expression is to improve"
},
"downloadUrls": {
"渠道1": "https://gitee.com/jiguro/BetterVia/raw/master/Script/twitter-kaizen-72.user.js",
"渠道2": "https://raw.githubusercontent.com/JiGuroLGC/BetterVia/main/Script/twitter-kaizen-72.user.js"
},
"category": "其他类"
},
{
"id": "twitter______75_user",
"names": {
"zh-CN": "Twitter/X Media Downloader",
"zh-TW": "Twitter/X Media Downloader",
"en": "Twitter/X Media Downloader"
},
"descriptions": {
"zh-CN": "Save Video/Photo by One-Click.",
"zh-TW": "Save Video/Photo by One-Click.",
"en": "Save Video/Photo by One-Click."
},
"details": {
"zh-CN": "Save Video/Photo by One-Click.",
"zh-TW": "Save Video/Photo by One-Click.",
"en": "Save Video/Photo by One-Click."
},
"downloadUrls": {
"渠道1": "https://gitee.com/jiguro/BetterVia/raw/master/Script/twitter-媒体下载-75.user.js",
"渠道2": "https://raw.githubusercontent.com/JiGuroLGC/BetterVia/main/Script/twitter-媒体下载-75.user.js"
},
"category": "其他类"
},
{
"id": "twitter________73_user",
"names": {
"zh-CN": "Twitter image viewing enhancement",
"zh-TW": "Twitter image viewing enhancement",
"en": "Twitter image viewing enhancement"
},
"descriptions": {
"zh-CN": "Make Twitter photo viewing more humane",
"zh-TW": "Make Twitter photo viewing more humane",
"en": "Make Twitter photo viewing more humane"
},
"details": {
"zh-CN": "Make Twitter photo viewing more humane",
"zh-TW": "Make Twitter photo viewing more humane",
"en": "Make Twitter photo viewing more humane"
},
"downloadUrls": {
"渠道1": "https://gitee.com/jiguro/BetterVia/raw/master/Script/twitter-图片查看增强-73.user.js",
"渠道2": "https://raw.githubusercontent.com/JiGuroLGC/BetterVia/main/Script/twitter-图片查看增强-73.user.js"
},
"category": "其他类"
},
{
"id": "twitter________74_user",
"names": {
"zh-CN": "Twitter remove content warning",
"zh-TW": "Twitter remove content warning",
"en": "Twitter remove content warning"
},
"descriptions": {
"zh-CN": "Remove twitter content warning",
"zh-TW": "Remove twitter content warning",
"en": "Remove twitter content warning"
},
"details": {
"zh-CN": "Remove twitter content warning",
"zh-TW": "Remove twitter content warning",
"en": "Remove twitter content warning"
},
"downloadUrls": {
"渠道1": "https://gitee.com/jiguro/BetterVia/raw/master/Script/twitter-移除内容警告-74.user.js",
"渠道2": "https://raw.githubusercontent.com/JiGuroLGC/BetterVia/main/Script/twitter-移除内容警告-74.user.js"
},
"category": "其他类"
},
{
"id": "twitter______71_user",
"names": {
"zh-CN": "Twitter External Translator",
"zh-TW": "Twitter External Translator",
"en": "Twitter External Translator"
},
"descriptions": {
"zh-CN": "Adds external & internal translators to various sites.",
"zh-TW": "Adds external & internal translators to various sites.",
"en": "Adds external & internal translators to various sites."
},
"details": {
"zh-CN": "Adds external & internal translators to various sites.",
"zh-TW": "Adds external & internal translators to various sites.",
"en": "Adds external & internal translators to various sites."
},
"downloadUrls": {
"渠道1": "https://gitee.com/jiguro/BetterVia/raw/master/Script/twitter外部翻译器-71.user.js",
"渠道2": "https://raw.githubusercontent.com/JiGuroLGC/BetterVia/main/Script/twitter外部翻译器-71.user.js"
},
"category": "其他类"
},
{
"id": "vconsole___12_user",
"names": {
"zh-CN": "vconsole调试",
"zh-TW": "vconsole調試",
"en": "vconsole debugging"
},
"descriptions": {
"zh-CN": "暂无描述",
"zh-TW": "暫無描述",
"en": "No description yet"
},
"details": {
"zh-CN": "暂无描述",
"zh-TW": "暫無描述",
"en": "No description yet"
},
"downloadUrls": {
"渠道1": "https://gitee.com/jiguro/BetterVia/raw/master/Script/vconsole调试-12.user.js",
"渠道2": "https://raw.githubusercontent.com/JiGuroLGC/BetterVia/main/Script/vconsole调试-12.user.js"
},
"category": "其他类"
},
{
"id": "youtube_cpu_tamer_by_animationframe_69_user",
"names": {
"zh-CN": "YouTube CPU Tamer by AnimationFrame",
"zh-TW": "YouTube CPU Tamer by AnimationFrame",
"en": "YouTube CPU Tamer by AnimationFrame"
},
"descriptions": {
"zh-CN": "Reduce Browser's Energy Impact for playing YouTube Video",
"zh-TW": "Reduce Browser's Energy Impact for playing YouTube Video",
"en": "Reduce Browser's Energy Impact for playing YouTube Video"
},
"details": {
"zh-CN": "Reduce Browser's Energy Impact for playing YouTube Video",
"zh-TW": "Reduce Browser's Energy Impact for playing YouTube Video",
"en": "Reduce Browser's Energy Impact for playing YouTube Video"
},
"downloadUrls": {
"渠道1": "https://gitee.com/jiguro/BetterVia/raw/master/Script/youtube-cpu-tamer-by-animationframe-69.user.js",
"渠道2": "https://raw.githubusercontent.com/JiGuroLGC/BetterVia/main/Script/youtube-cpu-tamer-by-animationframe-69.user.js"
},
"category": "其他类"
},
{
"id": "youtube______70_user",
"names": {
"zh-CN": "YouTube Super Fast Chat",
"zh-TW": "YouTube Super Fast Chat",
"en": "YouTube Super Fast Chat"
},
"descriptions": {
"zh-CN": "Ultimate Performance Boost for YouTube Live Chats",
"zh-TW": "Ultimate Performance Boost for YouTube Live Chats",
"en": "Ultimate Performance Boost for YouTube Live Chats"
},
"details": {
"zh-CN": "Ultimate Performance Boost for YouTube Live Chats",
"zh-TW": "Ultimate Performance Boost for YouTube Live Chats",
"en": "Ultimate Performance Boost for YouTube Live Chats"
},
"downloadUrls": {
"渠道1": "https://gitee.com/jiguro/BetterVia/raw/master/Script/youtube-超快聊天-70.user.js",
"渠道2": "https://raw.githubusercontent.com/JiGuroLGC/BetterVia/main/Script/youtube-超快聊天-70.user.js"
},
"category": "其他类"
},
{
"id": "youtube_________25_user",
"names": {
"zh-CN": "Youtube dual subtitle",
"zh-TW": "Youtube dual subtitle",
"en": "Youtube dual subtitle"
},
"descriptions": {
"zh-CN": "Fix for mobile devices on YouTube bilingual captions. It works on both mobile and desktop, and supports the Via browser.",
"zh-TW": "Fix for mobile devices on YouTube bilingual captions. It works on both mobile and desktop, and supports the Via browser.",
"en": "Fix for mobile devices on YouTube bilingual captions. It works on both mobile and desktop, and supports the Via browser."
},
"details": {
"zh-CN": "Fix for mobile devices on YouTube bilingual captions. It works on both mobile and desktop, and supports the Via browser.",
"zh-TW": "Fix for mobile devices on YouTube bilingual captions. It works on both mobile and desktop, and supports the Via browser.",
"en": "Fix for mobile devices on YouTube bilingual captions. It works on both mobile and desktop, and supports the Via browser."
},
"downloadUrls": {
"渠道1": "https://gitee.com/jiguro/BetterVia/raw/master/Script/youtube-双语字幕全平台-25.user.js",
"渠道2": "https://raw.githubusercontent.com/JiGuroLGC/BetterVia/main/Script/youtube-双语字幕全平台-25.user.js"
},
"category": "其他类"
},
{
"id": "youtube_______66_user",
"names": {
"zh-CN": "YouTube Fixed Video Quality",
"zh-TW": "YouTube Fixed Video Quality",
"en": "YouTube Fixed Video Quality"
},
"descriptions": {
"zh-CN": "Remember video quality without any additional user interface.",
"zh-TW": "Remember video quality without any additional user interface.",
"en": "Remember video quality without any additional user interface."
},
"details": {
"zh-CN": "Remember video quality without any additional user interface.",
"zh-TW": "Remember video quality without any additional user interface.",
"en": "Remember video quality without any additional user interface."
},
"downloadUrls": {
"渠道1": "https://gitee.com/jiguro/BetterVia/raw/master/Script/youtube固定视频画质-66.user.js",
"渠道2": "https://raw.githubusercontent.com/JiGuroLGC/BetterVia/main/Script/youtube固定视频画质-66.user.js"
},
"category": "其他类"
},
{
"id": "youtube____21_user",
"names": {
"zh-CN": "youtube-adb",
"zh-TW": "youtube-adb",
"en": "youtube-adb"
},
"descriptions": {
"zh-CN": "A script to remove YouTube ads, including static ads and video ads, without interfering with the network and ensuring safety.",
"zh-TW": "A script to remove YouTube ads, including static ads and video ads, without interfering with the network and ensuring safety.",
"en": "A script to remove YouTube ads, including static ads and video ads, without interfering with the network and ensuring safety."
},
"details": {
"zh-CN": "A script to remove YouTube ads, including static ads and video ads, without interfering with the network and ensuring safety.",
"zh-TW": "A script to remove YouTube ads, including static ads and video ads, without interfering with the network and ensuring safety.",
"en": "A script to remove YouTube ads, including static ads and video ads, without interfering with the network and ensuring safety."
},
"downloadUrls": {
"渠道1": "https://gitee.com/jiguro/BetterVia/raw/master/Script/youtube去广告-21.user.js",
"渠道2": "https://raw.githubusercontent.com/JiGuroLGC/BetterVia/main/Script/youtube去广告-21.user.js"
},
"category": "其他类"
},
{
"id": "___________22_user",
"names": {
"zh-CN": "【移动端】百度系优化",
"zh-TW": "【移動端】百度系優化",
"en": "[Mobile] Baidu optimization"
},
"descriptions": {
"zh-CN": "用于【移动端】的百度系列产品优化,包括【百度搜索】、【百家号】、【百度贴吧】、【百度文库】、【百度经验】、【百度百科】、【百度知道】、【百度翻译】、【百度图片】、【百度地图】、【百度好看视频】、【百度爱企查】、【百度问题】、【百度识图】等",
"zh-TW": "用於【移動端】的百度系列產品優化,包括【百度搜索】、【百家號】、【百度貼吧】、【百度文庫】、【百度經驗】、【百度百科】、【百度知道】、【百度翻譯】、【百度圖片】、【百度地圖】、【百度好看視頻】、【百度愛企查】、【百度問題】、【百度識圖】等",
"en": "Baidu series product optimization for [mobile terminal], including [Baidu Search], [Baidu Account], [Baidu Tieba], [Baidu Library], [Baidu Experience], [Baidu Encyclopedia], [Baidu Know], [Baidu Translation], [Baidu Picture], [Baidu Map], [Baidu Good Video], [Baidu Aiqicha], [Baidu Question], [Baidu Image Recognition], etc."
},
"details": {
"zh-CN": "用于【移动端】的百度系列产品优化,包括【百度搜索】、【百家号】、【百度贴吧】、【百度文库】、【百度经验】、【百度百科】、【百度知道】、【百度翻译】、【百度图片】、【百度地图】、【百度好看视频】、【百度爱企查】、【百度问题】、【百度识图】等",
"zh-TW": "用於【移動端】的百度系列產品優化,包括【百度搜索】、【百家號】、【百度貼吧】、【百度文庫】、【百度經驗】、【百度百科】、【百度知道】、【百度翻譯】、【百度圖片】、【百度地圖】、【百度好看視頻】、【百度愛企查】、【百度問題】、【百度識圖】等",
"en": "Baidu series product optimization for [mobile terminal], including [Baidu Search], [Baidu Account], [Baidu Tieba], [Baidu Library], [Baidu Experience], [Baidu Encyclopedia], [Baidu Know], [Baidu Translation], [Baidu Picture], [Baidu Map], [Baidu Good Video], [Baidu Aiqicha], [Baidu Question], [Baidu Image Recognition], etc."
},
"downloadUrls": {
"渠道1": "https://gitee.com/jiguro/BetterVia/raw/master/Script/【移动端】百度系优化-22.user.js",
"渠道2": "https://raw.githubusercontent.com/JiGuroLGC/BetterVia/main/Script/【移动端】百度系优化-22.user.js"
},
"category": "其他类"
},
{
"id": "__________51_user",
"names": {
"zh-CN": "【移动端】微博优化",
"zh-TW": "【移動端】微博優化",
"en": "【Mobile】Weibo optimization"
},
"descriptions": {
"zh-CN": "劫持自动跳转登录,修复用户主页正确跳转,伪装客户端,可查看名人堂日程表,解锁视频清晰度(1080p、2K、2K-60、4K、4K-60)",
"zh-TW": "劫持自動跳轉登錄,修復用戶主頁正確跳轉,偽裝客戶端,可查看名人堂日程表,解鎖視頻清晰度(1080p、2K、2K-60、4K、4K-60)",
"en": "Hijack automatic jump login, fix user homepage to jump correctly, disguise client, view Hall of Fame schedule, unlock video definition (1080p, 2K, 2K-60, 4K, 4K-60)"
},
"details": {
"zh-CN": "劫持自动跳转登录,修复用户主页正确跳转,伪装客户端,可查看名人堂日程表,解锁视频清晰度(1080p、2K、2K-60、4K、4K-60)",
"zh-TW": "劫持自動跳轉登錄,修復用戶主頁正確跳轉,偽裝客戶端,可查看名人堂日程表,解鎖視頻清晰度(1080p、2K、2K-60、4K、4K-60)",
"en": "Hijack automatic jump login, fix user homepage to jump correctly, disguise client, view Hall of Fame schedule, unlock video definition (1080p, 2K, 2K-60, 4K, 4K-60)"
},
"downloadUrls": {
"渠道1": "https://gitee.com/jiguro/BetterVia/raw/master/Script/【移动端】微博优化-51.user.js",
"渠道2": "https://raw.githubusercontent.com/JiGuroLGC/BetterVia/main/Script/【移动端】微博优化-51.user.js"
},
"category": "其他类"
},
{
"id": "_____11_user",
"names": {
"zh-CN": "安全安装",
"zh-TW": "安全安裝",
"en": "Safe installation"
},
"descriptions": {
"zh-CN": "暂无描述",
"zh-TW": "暫無描述",
"en": "No description yet"
},
"details": {
"zh-CN": "暂无描述",
"zh-TW": "暫無描述",
"en": "No description yet"
},
"downloadUrls": {
"渠道1": "https://gitee.com/jiguro/BetterVia/raw/master/Script/安全安装-11.user.js",
"渠道2": "https://raw.githubusercontent.com/JiGuroLGC/BetterVia/main/Script/安全安装-11.user.js"
},
"category": "其他类"
},
{
"id": "____csdn_______27_user",
"names": {
"zh-CN": "被优化的CSDN优化脚本 (",
"zh-TW": "被優化的CSDN優化腳本 (",
"en": "Optimized CSDN optimization script ("
},
"descriptions": {
"zh-CN": "不含使用情况统计及广告的CSDNGreener~|🕶无需登录CSDN,获得比会员更佳的体验|🖥自定义背景图,分辨率自适配,分屏不用滚动|💾超级预优化|🔖独家超级免会员|🏷独家原创文章免登录展开|🔌独家推荐内容自由开关|📠独家免登录复制|🔗独家防外链重定向|📝独家论坛未登录自动展开文章、评论|🌵全面净化|📈沉浸阅读|🧴净化剪贴板|📕作者信息文章顶部展示",
"zh-TW": "不含使用情況統計及廣告的CSDNGreener~|🕶無需登錄CSDN,獲得比會員更佳的體驗|🖥自定義背景圖,分辨率自適配,分屏不用滾動|💾超級預優化|🔖獨家超級免會員|🏷獨家原創文章免登錄展開|🔌獨家推薦內容自由開關|📠獨家免登錄複製|🔗獨家防外鏈重定向|📝獨家論壇未登錄自動展開文章、評論|🌵全面淨化|📈沉浸閱讀|🧴淨化剪貼板|📕作者信息文章頂部展示",
"en": "CSDN Greener without usage statistics and advertisements~|🕶No need to log in to CSDN, get a better experience than members|🖥Customized background image, resolution adaptive, split screen without scrolling|💾Super pre-optimized|🔖Exclusive super membership-free|🏷Exclusive original Create articles without logging in to expand | 🔌 Free switching of exclusive recommended content | 📠 Exclusive login-free copy | 🔗 Exclusive prevention of external link redirection | 📝 Exclusive forum to automatically expand articles and comments without logging in | 🌵 Comprehensive purification | 📈 Immersive reading | 🧴 Purify clipboard | 📕 Author information displayed at the top of the article"
},
"details": {
"zh-CN": "不含使用情况统计及广告的CSDNGreener~|🕶无需登录CSDN,获得比会员更佳的体验|🖥自定义背景图,分辨率自适配,分屏不用滚动|💾超级预优化|🔖独家超级免会员|🏷独家原创文章免登录展开|🔌独家推荐内容自由开关|📠独家免登录复制|🔗独家防外链重定向|📝独家论坛未登录自动展开文章、评论|🌵全面净化|📈沉浸阅读|🧴净化剪贴板|📕作者信息文章顶部展示",
"zh-TW": "不含使用情況統計及廣告的CSDNGreener~|🕶無需登錄CSDN,獲得比會員更佳的體驗|🖥自定義背景圖,分辨率自適配,分屏不用滾動|💾超級預優化|🔖獨家超級免會員|🏷獨家原創文章免登錄展開|🔌獨家推薦內容自由開關|📠獨家免登錄複製|🔗獨家防外鏈重定向|📝獨家論壇未登錄自動展開文章、評論|🌵全面淨化|📈沉浸閱讀|🧴淨化剪貼板|📕作者信息文章頂部展示",
"en": "CSDN Greener without usage statistics and advertisements~|🕶No need to log in to CSDN, get a better experience than members|🖥Customized background image, resolution adaptive, split screen without scrolling|💾Super pre-optimized|🔖Exclusive super membership-free|🏷Exclusive original Create articles without logging in to expand | 🔌 Free switching of exclusive recommended content | 📠 Exclusive login-free copy | 🔗 Exclusive prevention of external link redirection | 📝 Exclusive forum to automatically expand articles and comments without logging in | 🌵 Comprehensive purification | 📈 Immersive reading | 🧴 Purify clipboard | 📕 Author information displayed at the top of the article"
},
"downloadUrls": {
"渠道1": "https://gitee.com/jiguro/BetterVia/raw/master/Script/被优化的csdn优化脚本-(-27.user.js",
"渠道2": "https://raw.githubusercontent.com/JiGuroLGC/BetterVia/main/Script/被优化的csdn优化脚本-(-27.user.js"
},
"category": "其他类"
},
{
"id": "______19_user",
"names": {
"zh-CN": "播放器增强",
"zh-TW": "播放器增強",
"en": "Player enhancement"
},
"descriptions": {
"zh-CN": "暂无描述",
"zh-TW": "暫無描述",
"en": "No description yet"
},
"details": {
"zh-CN": "暂无描述",
"zh-TW": "暫無描述",
"en": "No description yet"
},
"downloadUrls": {
"渠道1": "https://gitee.com/jiguro/BetterVia/raw/master/Script/播放器增强-19.user.js",
"渠道2": "https://raw.githubusercontent.com/JiGuroLGC/BetterVia/main/Script/播放器增强-19.user.js"
},
"category": "其他类"
},
{
"id": "___greasyfork_14_user",
"names": {
"zh-CN": "Greasyfork Search with Sleazyfork Results include",
"zh-TW": "Greasyfork Search with Sleazyfork Results include",
"en": "Greasyfork Search with Sleazyfork Results include"
},
"descriptions": {
"zh-CN": "Merge adult results of sleazyfork into greasyfork when the script is no longer anonymously available, add rating score and version for scripts then",
"zh-TW": "Merge adult results of sleazyfork into greasyfork when the script is no longer anonymously available, add rating score and version for scripts then",
"en": "Merge adult results of sleazyfork into greasyfork when the script is no longer anonymously available, add rating score and version for scripts then"
},
"details": {
"zh-CN": "Merge adult results of sleazyfork into greasyfork when the script is no longer anonymously available, add rating score and version for scripts then",
"zh-TW": "Merge adult results of sleazyfork into greasyfork when the script is no longer anonymously available, add rating score and version for scripts then",
"en": "Merge adult results of sleazyfork into greasyfork when the script is no longer anonymously available, add rating score and version for scripts then"
},
"downloadUrls": {
"渠道1": "https://gitee.com/jiguro/BetterVia/raw/master/Script/大人的greasyfork-14.user.js",
"渠道2": "https://raw.githubusercontent.com/JiGuroLGC/BetterVia/main/Script/大人的greasyfork-14.user.js"
},
"category": "其他类"
},
{
"id": "________58_user",
"names": {
"zh-CN": "抖音网页版优化",
"zh-TW": "抖音網頁版優化",
"en": "Douyin web version optimization"
},
"descriptions": {
"zh-CN": "抖音网页版推荐、直播优化,网页全屏,全黑,自动按浏览器窗口调整大小",
"zh-TW": "抖音網頁版推薦、直播優化,網頁全屏,全黑,自動按瀏覽器窗口調整大小",
"en": "Douyin web version recommendation, live broadcast optimization, web page full screen, all black, automatically resize according to the browser window"
},
"details": {
"zh-CN": "抖音网页版推荐、直播优化,网页全屏,全黑,自动按浏览器窗口调整大小",
"zh-TW": "抖音網頁版推薦、直播優化,網頁全屏,全黑,自動按瀏覽器窗口調整大小",
"en": "Douyin web version recommendation, live broadcast optimization, web page full screen, all black, automatically resize according to the browser window"
},
"downloadUrls": {
"渠道1": "https://gitee.com/jiguro/BetterVia/raw/master/Script/抖音网页版优化-58.user.js",
"渠道2": "https://raw.githubusercontent.com/JiGuroLGC/BetterVia/main/Script/抖音网页版优化-58.user.js"
},
"category": "其他类"
},
{
"id": "____________44_user",
"names": {
"zh-CN": "防止未经授权的自动复制",
"zh-TW": "防止未經授權的自動複製",
"en": "Prevent unauthorized automatic copying"
},
"descriptions": {
"zh-CN": "在非选词复制时显示小红点提示用户以防止未经授权的自动复制。",
"zh-TW": "在非選詞複製時顯示小紅點提示用戶以防止未經授權的自動複製。",
"en": "A small red dot is displayed when copying unselected words to remind the user to prevent unauthorized automatic copying."
},
"details": {
"zh-CN": "在非选词复制时显示小红点提示用户以防止未经授权的自动复制。",
"zh-TW": "在非選詞複製時顯示小紅點提示用戶以防止未經授權的自動複製。",
"en": "A small red dot is displayed when copying unselected words to remind the user to prevent unauthorized automatic copying."
},
"downloadUrls": {
"渠道1": "https://gitee.com/jiguro/BetterVia/raw/master/Script/防止未经授权的自动复制-44.user.js",
"渠道2": "https://raw.githubusercontent.com/JiGuroLGC/BetterVia/main/Script/防止未经授权的自动复制-44.user.js"
},
"category": "其他类"
},
{
"id": "_______63_user",
"names": {
"zh-CN": "更好的智学网",
"zh-TW": "更好的智學網",
"en": "Better Intelligent Learning Network"
},
"descriptions": {
"zh-CN": "让智学网变得更好",
"zh-TW": "讓智學網變得更好",
"en": "Make Zhixue.com better"
},
"details": {
"zh-CN": "让智学网变得更好",
"zh-TW": "讓智學網變得更好",
"en": "Make Zhixue.com better"
},
"downloadUrls": {
"渠道1": "https://gitee.com/jiguro/BetterVia/raw/master/Script/更好的智学网-63.user.js",
"渠道2": "https://raw.githubusercontent.com/JiGuroLGC/BetterVia/main/Script/更好的智学网-63.user.js"
},
"category": "其他类"
},
{
"id": "_________31_user",
"names": {
"zh-CN": "谷歌原生网页翻译",
"zh-TW": "谷歌原生網頁翻譯",
"en": "Google native web translation"
},
"descriptions": {
"zh-CN": "暂无描述",
"zh-TW": "暫無描述",
"en": "No description yet"
},
"details": {
"zh-CN": "暂无描述",
"zh-TW": "暫無描述",
"en": "No description yet"
},
"downloadUrls": {
"渠道1": "https://gitee.com/jiguro/BetterVia/raw/master/Script/谷歌原生网页翻译-31.user.js",
"渠道2": "https://raw.githubusercontent.com/JiGuroLGC/BetterVia/main/Script/谷歌原生网页翻译-31.user.js"
},
"category": "其他类"
},
{
"id": "_________45_user",
"names": {
"zh-CN": "黑白网页恢复彩色",
"zh-TW": "黑白網頁恢復彩色",
"en": "Restoring color from black and white web page"
},
"descriptions": {
"zh-CN": "黑白网页恢复彩色,匹配所有网页,即装即用。",
"zh-TW": "黑白網頁恢復彩色,匹配所有網頁,即裝即用。",
"en": "Black and white web pages are restored to color, matching all web pages, and can be used out of the box."
},
"details": {
"zh-CN": "黑白网页恢复彩色,匹配所有网页,即装即用。",
"zh-TW": "黑白網頁恢復彩色,匹配所有網頁,即裝即用。",
"en": "Black and white web pages are restored to color, matching all web pages, and can be used out of the box."
},
"downloadUrls": {
"渠道1": "https://gitee.com/jiguro/BetterVia/raw/master/Script/黑白网页恢复彩色-45.user.js",
"渠道2": "https://raw.githubusercontent.com/JiGuroLGC/BetterVia/main/Script/黑白网页恢复彩色-45.user.js"
},
"category": "其他类"
},
{
"id": "_____52_user",
"names": {
"zh-CN": "简书优化",
"zh-TW": "簡書優化",
"en": "Simple book optimization"
},
"descriptions": {
"zh-CN": "支持手机端和PC端、屏蔽广告、优化浏览体验、重定向链接、全文居中、自动展开全文、允许复制文字、劫持唤醒/跳转App、自定义屏蔽元素等",