-
-
Notifications
You must be signed in to change notification settings - Fork 131
Expand file tree
/
Copy pathScriptsPath.json
More file actions
1135 lines (1135 loc) · 53.3 KB
/
Copy pathScriptsPath.json
File metadata and controls
1135 lines (1135 loc) · 53.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
{
"author": {
"name": "人民的勤务员(ChinaGodMan)",
"email": "china.qinwuyuan@gmail.com",
"url": "https://github.com/ChinaGodMan",
"time_zone": "Asia/Shanghai",
"avatar": "https://avatars.githubusercontent.com/u/96548841?v=4",
"tiktok": "https://www.tiktok.com/@qinwuyuan",
"instagram": "https://www.instagram.com/nide9448",
"telegram": "https://t.me/qinwuyuan",
"greasyfork": "https://greasyfork.org/users/1169082"
},
"project": "https://github.com/ChinaGodMan/UserScripts",
"created_at": "2024-06-17 GMT+8 17:27",
"description": "🐒一些修改自网络的油猴脚本 Some Tampermonkey scripts modified from the internet",
"disclaimer": "📢本仓库中的脚本仅供学习和交流使用,请勿用于商业用途,作者不承担任何责任。\n脚本来自互联网广大网友,本人仅是做了些许改动.感谢网友!\n如有侵权,联系必删!",
"license": "MIT",
"scripts": [
{
"name": "ChatGPT代码字体缩小",
"description": "让 ChatGPT 代码框内字体变小",
"group": "AI 脚本",
"js_name": "chatgpt-code-styling.user.js",
"directory": "chatgpt-code-styling",
"version": "0.1.1.0",
"greasyfork_id": 505209,
"created_at": "2024-08-26 11:42:17",
"preview": null,
"icon": "https://raw.githubusercontent.com/ChinaGodMan/UserScriptsHistory/main/scriptsIcon/chatgpt-code-styling.png",
"readme_locales": "zh-TW,vi,en,ko"
},
{
"name": "ChatGPT 代码高亮",
"description": "为 ChatGPT 添加所有语言代码高亮(使用 highlight.js)",
"group": "AI 脚本",
"js_name": "chatgpt-code-hightlight.user.js",
"directory": "chatgpt-code-hightlight",
"version": "2025.02.18.0403",
"greasyfork_id": 527255,
"created_at": "2025-02-18 04:03",
"preview": "https://raw.githubusercontent.com/Dreace/ChatGPTCodeHighlight/master/preview.png",
"icon": "https://raw.githubusercontent.com/ChinaGodMan/UserScriptsHistory/main/scriptsIcon/chatgpt-code-styling.png",
"readme_locales": "zh-TW,vi,en,ko"
},
{
"name": "ChatGPT 聊天复制代码按钮",
"description": "在 chatgpt.com 上代码块的右下角添加一个带有动画的“复制代码”按钮",
"group": "AI 脚本",
"js_name": "chatgpt-copy-code-button.user.js",
"directory": "chatgpt-copy-code-button",
"version": "1.2.0.0",
"greasyfork_id": 509598,
"created_at": "2024-09-22 07:35:20",
"preview": "https://s2.loli.net/2024/09/22/VexqWUEA6GYPQjN.png",
"icon": "https://raw.githubusercontent.com/ChinaGodMan/UserScriptsHistory/main/scriptsIcon/chatgpt-copy-code-button.png",
"readme_locales": "zh-TW,vi,en,ko"
},
{
"name": "ChatGPT 字符计数器",
"description": "添加一个字符计数器到输入框,限制为 32732 个字符。(ChatGPT 的限制是 32732 个字符。)",
"group": "AI 脚本",
"js_name": "chatgpt-counter.user.js",
"directory": "chatgpt-counter",
"version": "1.3.1.14",
"greasyfork_id": 506166,
"created_at": "2024-09-01 09:51:01",
"preview": "https://s2.loli.net/2024/09/01/uJZIDbie6fdmOQH.png",
"icon": "https://raw.githubusercontent.com/ChinaGodMan/UserScriptsHistory/main/scriptsIcon/chatgpt-counter.png",
"readme_locales": "zh-TW,vi,en,ko"
},
{
"name": "ChatGPT 折叠自己消息和最大宽度",
"description": "自动折叠由你发送的长消息,节省屏幕空间。允许你设置聊天窗口的最大宽度,使得长消息不会超出指定范围。",
"group": "AI 脚本",
"js_name": "chatgpt-plus.user.js",
"directory": "chatgpt-plus",
"version": "0.3.0.0",
"greasyfork_id": 504901,
"created_at": "2024-08-24 11:33:58",
"preview": "https://s2.loli.net/2024/08/24/BEyFS87bgMjJX1R.png",
"icon": "https://raw.githubusercontent.com/ChinaGodMan/UserScriptsHistory/main/scriptsIcon/chatgpt-plus.png",
"readme_locales": "zh-TW,vi,en,ko"
},
{
"name": "网页写入剪辑版授权管理器",
"description": "禁止网页向剪辑版拉屎,绿色为放行,红色禁止,橙色临时方向",
"group": "网页脚本",
"js_name": "clipboard-manager.user.js",
"directory": "clipboard-manager",
"version": "1.2.3.1",
"greasyfork_id": 497403,
"created_at": "2024-06-09 10:17:55",
"preview": "https://s2.loli.net/2024/08/05/ItB4r1G9SULPqaH.png",
"icon": "https://raw.githubusercontent.com/ChinaGodMan/UserScriptsHistory/main/scriptsIcon/clipboard-manager.png",
"readme_locales": "zh-TW,vi,en,ko"
},
{
"name": "解除CSDN登录复制限制",
"description": "去你妈的 CSDN 登录复制,无需登录即可复制代码框内容",
"group": "博客网站",
"js_name": "csdn-blocker.user.js",
"directory": "csdn-blocker",
"version": "1.0.0.23",
"greasyfork_id": 505207,
"created_at": "2024-08-26 11:37:22",
"preview": null,
"icon": "https://raw.githubusercontent.com/ChinaGodMan/UserScriptsHistory/main/scriptsIcon/csdn-blocker.svg",
"readme_locales": "zh-TW,vi,en,ko"
},
{
"name": "绚丽渐变美化网页表格",
"description": "自动为网页上的表格所有列应用颜色渐变美化.",
"group": "网页脚本",
"js_name": "colorful-table.user.js",
"directory": "colorful-table",
"version": "1.0.0.9",
"greasyfork_id": 507036,
"created_at": "2024-09-06 06:08:08",
"preview": "https://s2.loli.net/2024/09/06/IA7pxwj1ZC4c56a.png",
"icon": "https://raw.githubusercontent.com/ChinaGodMan/UserScriptsHistory/main/scriptsIcon/colorful-table.svg",
"readme_locales": "zh-TW,vi,en,ko"
},
{
"name": "GitHub提交信息显示HTML",
"description": "该脚本将 GitHub 上的提交信息转化为 HTML 视图,以更清晰地查看提交详情。它会自动将提交信息列表、提交头部和最新提交信息转化为 HTML 格式,提供更佳的视觉效果和用户体验。",
"group": "GitHub 脚本",
"js_name": "github-commit-viewer.user.js",
"directory": "github-commit-viewer",
"version": "1.0.0.19",
"greasyfork_id": 505830,
"created_at": "2024-08-30 10:13:44",
"preview": "https://s2.loli.net/2024/08/30/lhJrcbzDdABY2pO.png",
"icon": "https://raw.githubusercontent.com/ChinaGodMan/UserScriptsHistory/main/scriptsIcon/github-commit-viewer.png",
"readme_locales": "zh-TW,vi,en,ko"
},
{
"name": "在Github上打开jsDelivr链接",
"description": "打开jsDelivr上的GitHub链接,用于快速下载文件",
"group": "GitHub 脚本",
"js_name": "github-jsdelivr-link.user.js",
"directory": "github-jsdelivr-link",
"version": null,
"greasyfork_id": 527870,
"created_at": null,
"preview": "https://greasyfork.s3.us-east-2.amazonaws.com/jftr1ms2n0mugq1wmwd90k8tzpps",
"icon": "https://camo.githubusercontent.com/6a5d2046028682a99b5fa88ef0f3399c9bced1d514179686a3973a323bccbf44/68747470733a2f2f7777772e6a7364656c6976722e636f6d2f69636f6e5f323536783235362e706e67",
"readme_locales": "zh-TW,vi,en,ko"
},
{
"name": "GitHub 快速跳转助手",
"description": "GitHub 快速跳转助手是一款专为帮助用户快速访问自己在 GitHub 上的仓库而设计。它可以大幅提高开发者在使用 GitHub 时的效率。",
"group": "GitHub 脚本",
"js_name": "github-repository-navigator.user.js",
"directory": "github-repository-navigator",
"version": "2024.11.6.21",
"greasyfork_id": 515205,
"created_at": "2024-11-01 19:46:42",
"preview": "https://s2.loli.net/2024/11/01/AWopjtOVhEcYKxC.png",
"icon": "https://raw.githubusercontent.com/ChinaGodMan/UserScriptsHistory/main/scriptsIcon/github-commit-viewer.png",
"readme_locales": "zh-TW,vi,en,ko"
},
{
"name": "GitHub 文件列表美化器",
"description": "GitHub 文件列表美化器是一个用户脚本,用于增强 GitHub 仓库中的文件显示效果。它可以为文件和文件夹添加颜色,并将文件类型图标替换为小图像,使得代码库更加易于浏览和管理。",
"group": "GitHub 脚本",
"js_name": "github-file-list-beautifier-plus.user.js",
"directory": "github-file-list-beautifier-plus",
"version": "4.1.0.4",
"greasyfork_id": 508047,
"created_at": "2024-09-12 11:56:17",
"preview": "https://s2.loli.net/2024/09/12/HCZDNa8EngxQJ4y.png",
"icon": "https://raw.githubusercontent.com/ChinaGodMan/UserScriptsHistory/main/scriptsIcon/github-file-list-beautifier-plus.png",
"readme_locales": "zh-TW,vi,en,ko"
},
{
"name": "Github 代码语言列表显示全部",
"description": "扩展 Github 存储库上的语言列表,显示每种语言,而不是将小部分隐藏在 “其他” 下",
"group": "GitHub 脚本",
"js_name": "github-linguist-expand.user.js",
"directory": "github-linguist-expand",
"version": "1.1.0.0",
"greasyfork_id": 509889,
"created_at": "2024-09-24 05:30:01",
"preview": "https://s2.loli.net/2024/09/24/NlaYfsZdcW7hTr5.png",
"icon": "https://raw.githubusercontent.com/ChinaGodMan/UserScriptsHistory/main/scriptsIcon/github-linguist-expand.png",
"readme_locales": "zh-TW,vi,en,ko"
},
{
"name": "GitHub 自动确认设备授权",
"description": "在GitHub授权页面自动输入授权码与自动确认。",
"group": "GitHub 脚本",
"js_name": "github-device-authorization.user.js",
"directory": "github-device-authorization",
"version": "1.0.0.0",
"greasyfork_id": 508956,
"created_at": "2024-09-18 09:12:31",
"preview": null,
"icon": "https://raw.githubusercontent.com/ChinaGodMan/UserScriptsHistory/main/scriptsIcon/github-device-authorization.png",
"readme_locales": "zh-TW,vi,en,ko"
},
{
"name": "GitHub文件夹下载",
"description": "添加一个下载按钮,允许轻松下载特定的 GitHub 文件夹。",
"group": "GitHub 脚本",
"js_name": "github-folder-downloader.user.js",
"directory": "github-folder-downloader",
"version": "0.7.0.23",
"greasyfork_id": 505496,
"created_at": "2024-08-28 04:27:35",
"preview": "https://s2.loli.net/2024/08/28/XiKjIu85TVBwzMa.png",
"icon": "https://raw.githubusercontent.com/ChinaGodMan/UserScriptsHistory/main/scriptsIcon/github-folder-downloader.png",
"readme_locales": "zh-TW,vi,en,ko"
},
{
"name": "GitHub下载单文件和复制文件URL",
"description": "在每个文件行的末尾添加按钮,以复制原始文件 URL 和下载文件",
"group": "GitHub 脚本",
"js_name": "github-raw-file-plus.user.js",
"directory": "github-raw-file-plus",
"version": "2.2.0.22",
"greasyfork_id": 505501,
"created_at": "2024-08-28 05:20:14",
"preview": "https://s2.loli.net/2024/08/28/QolM627BS8Avd9b.png",
"icon": "https://raw.githubusercontent.com/ChinaGodMan/UserScriptsHistory/main/scriptsIcon/github-raw-file-plus.png",
"readme_locales": "zh-TW,vi,en,ko"
},
{
"name": "🤠 Github 增强小助手 仓库显示大小 不活跃开发警告 仓库内快捷跳转用户其他仓库 🤠",
"description": "在Github查看仓库和搜索仓库时显示仓库大小 ,不活跃开发警告,仓库内快捷跳转.",
"group": "GitHub 脚本",
"js_name": "github-repo-size-view.user.js",
"directory": "github-repo-size-view",
"version": "0.1.3.7",
"greasyfork_id": 502291,
"created_at": "2024-08-01 03:43:19",
"preview": "https://s2.loli.net/2024/08/05/RwxPkGZoNiYTM1m.png",
"icon": "https://raw.githubusercontent.com/ChinaGodMan/UserScriptsHistory/main/scriptsIcon/github-repo-size-view.png",
"readme_locales": "zh-TW,vi,en,ko"
},
{
"name": "GitHub Sort by Date",
"description": "仓库列表文件排序方式改为日期降序,方便查看最新更新的文件。",
"group": "GitHub 脚本",
"js_name": "github-sort-by-date.user.js",
"directory": "github-sort-by-date",
"version": "1.1.0.23",
"greasyfork_id": 505218,
"created_at": "2024-08-26 12:30:53",
"preview": "https://s2.loli.net/2024/08/26/UjuVOtcvks8FPaB.png",
"icon": "https://raw.githubusercontent.com/ChinaGodMan/UserScriptsHistory/main/scriptsIcon/github-sort-by-date.png",
"readme_locales": "zh-TW,vi,en,ko"
},
{
"name": "Google 高级搜索",
"description": "这是一个为 Google 添加高级搜索表单的用户脚本。它能在页面顶部添加一个可隐藏的高级搜索表单,使您能够更精确地搜索信息。",
"group": "Google 脚本",
"js_name": "google-advanced-search.user.js",
"directory": "google-advanced-search",
"version": "0.1.9.45",
"greasyfork_id": 502652,
"created_at": "2024-08-05 10:28:20",
"preview": "https://s2.loli.net/2024/08/05/MXF8JdpqnyreuRf.png",
"icon": "https://raw.githubusercontent.com/ChinaGodMan/UserScriptsHistory/main/scriptsIcon/google-advanced-search.png",
"readme_locales": "zh-TW,vi,en,ko"
},
{
"name": "Google 搜索屏蔽指定站点",
"description": "在搜索引擎结果中屏蔽特定的站点,帮助用户过滤掉不需要的搜索结果。 自定义输入屏蔽站点。格式-zhihu -baidu 用于屏蔽谷歌搜索内容",
"group": "Google 脚本",
"js_name": "google-block-search-sites.user.js",
"directory": "google-block-search-sites",
"version": "0.0.1.51",
"greasyfork_id": 500262,
"created_at": "2024-07-11 14:21:02",
"preview": null,
"icon": "https://raw.githubusercontent.com/ChinaGodMan/UserScriptsHistory/main/scriptsIcon/google-block-search-sites.png",
"readme_locales": "zh-TW,vi,en,ko"
},
{
"name": "GreasyFork适用于增强",
"description": "脚本详情页增加适用于链接增加点击打开网页,复制网页,轮胎搜索",
"group": "GreasyFork",
"js_name": "greasyfork-link.user.js",
"directory": "greasyfork-link",
"version": "0.9.3.66",
"greasyfork_id": 497317,
"created_at": "2024-06-08 05:36:47",
"preview": "https://greasyfork.s3.us-east-2.amazonaws.com/0y7q4czfrs1ylz71cpjpbl89h6tp",
"icon": "https://raw.githubusercontent.com/ChinaGodMan/UserScriptsHistory/main/scriptsIcon/greasyfork-link.png",
"readme_locales": "zh-TW,vi,en,ko"
},
{
"name": "GrreasyFork 用户发布的脚本数据可视化",
"description": "使用Chart.js获取和可视化获取用户脚本数据,并在用户个人主页生成一个图表在下方显示详细安装情况",
"group": "GreasyFork",
"js_name": "greasyfork-user-scripts-data-visualization.user.js",
"directory": "greasyfork-user-scripts-data-visualization",
"version": "1.1.1.1",
"greasyfork_id": 508968,
"created_at": "2024-09-18 11:41:12",
"preview": "https://s2.loli.net/2024/09/19/azlGiIBEg2SAFPc.gif",
"icon": "https://raw.githubusercontent.com/ChinaGodMan/UserScriptsHistory/main/scriptsIcon/greasyfork-user-scripts-data-visualization.svg",
"readme_locales": "zh-TW,vi,en,ko"
},
{
"name": "GreaysFork 增强 WebHook同步设置",
"description": "这个脚本可以帮助你快速输入脚本同步信息,并批量增加多个国家的语言代码,而不用一个个地点击选择框再去对应的网址。",
"group": "GreasyFork",
"js_name": "greasyfork-webhook-sync-enhanced.user.js",
"directory": "greasyfork-webhook-sync-enhanced",
"version": "1.1.1.1",
"greasyfork_id": 506717,
"created_at": "2024-09-04 12:12:18",
"preview": "https://s2.loli.net/2024/09/04/oYGt17AV9MD43w6.png",
"icon": "https://raw.githubusercontent.com/ChinaGodMan/UserScriptsHistory/main/scriptsIcon/greasyfork-webhook-sync-enhanced.svg",
"readme_locales": "zh-TW,vi,en,ko"
},
{
"name": "GreasyFork Markdown toobar",
"description": "在论坛默认使用 Markdown 格式,添加格式帮助链接及 Markdown 工具栏绍",
"group": "GreasyFork",
"js_name": "greasyfork-markdown-toolbar.user.js",
"directory": "greasyfork-markdown-toolbar",
"version": "2.0.5",
"greasyfork_id": 505164,
"created_at": "2024-08-26 02:12:29",
"preview": "https://s2.loli.net/2024/10/02/oI7mw3JLyzKCDRc.gif",
"icon": "https://raw.githubusercontent.com/ChinaGodMan/UserScriptsHistory/main/scriptsIcon/greasyfork-markdown-toolbar.png",
"readme_locales": "zh-TW,vi,en,ko"
},
{
"name": "GreasyFork 显示脚本评分",
"description": "脚本列表添加评价分数",
"group": "GreasyFork",
"js_name": "greasyfork-ranks.user.js",
"directory": "greasyfork-ranks",
"version": "1.3.3.63",
"greasyfork_id": 501119,
"created_at": "2024-07-19 09:44:01",
"preview": "https://s2.loli.net/2024/08/05/wvyAz8iVGMWJjEQ.png",
"icon": "https://raw.githubusercontent.com/ChinaGodMan/UserScriptsHistory/main/scriptsIcon/greasyfork-ranks.png",
"readme_locales": "zh-TW,vi,en,ko"
},
{
"name": "GreasyFork 高级搜索",
"description": "使用谷歌搜索 GreasyFork 和 SleazyFork 上的脚本",
"group": "GreasyFork",
"js_name": "greasyfork-search.user.js",
"directory": "greasyfork-search",
"version": "0.6.5.23",
"greasyfork_id": 505215,
"created_at": "2024-08-26 12:08:49",
"preview": null,
"icon": "https://raw.githubusercontent.com/ChinaGodMan/UserScriptsHistory/main/scriptsIcon/greasyfork-search.png",
"readme_locales": "zh-TW,vi,en,ko"
},
{
"name": "GreasyFork 导航栏增强",
"description": "增强greasyfork导航栏,增加用户列表,用户控制台等",
"group": "GreasyFork",
"js_name": "greasyfork-user-control-panel-button.user.js",
"directory": "greasyfork-user-control-panel-button",
"version": "0.3.1.57",
"greasyfork_id": 501880,
"created_at": "2024-07-27 09:34:43",
"preview": "https://s2.loli.net/2024/08/05/MXF8JdpqnyreuRf.png",
"icon": "https://raw.githubusercontent.com/ChinaGodMan/UserScriptsHistory/main/scriptsIcon/greasyfork-user-control-panel-button.png",
"readme_locales": "zh-TW,vi,en,ko"
},
{
"name": "Greasyfork糊裱匠",
"description": "增强greasyfork,复制代码,脚本下载,精确时间到秒,主页清理,讨论一键举报,脚本列表跳转代码添加下载 美化查看代码显示代码引用文件,显示脚本图标,跳转成人脚本等等一些操作",
"group": "GreasyFork",
"js_name": "greasyfork-utility-toolkit.user.js",
"directory": "greasyfork-utility-toolkit",
"version": "2024.12.12.2116",
"greasyfork_id": 497346,
"created_at": "2024-06-08 17:06:26",
"preview": "https://s2.loli.net/2024/08/05/Oq9DGAm7FzjpSg6.png",
"icon": "https://raw.githubusercontent.com/ChinaGodMan/UserScriptsHistory/main/scriptsIcon/greasyfork-utility-toolkit.svg",
"readme_locales": "zh-TW,vi,en,ko"
},
{
"name": "Greasyfork 通知助手",
"description": "当你的脚本或你参与的讨论有新回复时,脚本会在网页上以模态窗口显示最新的讨论内容。",
"group": "GreasyFork",
"js_name": "greasyfork-discussion-watcher.user.js",
"directory": "greasyfork-discussion-watcher",
"version": "1.5.0.4",
"greasyfork_id": 506345,
"created_at": "2024-09-02 12:36:00",
"preview": "https://s2.loli.net/2024/09/02/Ftpq1KomRcALjIE.png",
"icon": "https://raw.githubusercontent.com/ChinaGodMan/UserScriptsHistory/main/scriptsIcon/greasyfork-discussion-watcher.png",
"readme_locales": "zh-TW,vi,en,ko"
},
{
"name": "网页高亮关键字+(推荐)",
"description": "对网页上的文字进行高亮显示",
"group": "网页脚本",
"js_name": "highlight-keywords.user.js",
"directory": "highlight-keywords",
"version": "1.1.2.72",
"greasyfork_id": 498906,
"created_at": "2024-06-26 07:05:05",
"preview": "https://s2.loli.net/2024/08/05/oBWsunTIhLKkcrM.png",
"icon": "https://raw.githubusercontent.com/ChinaGodMan/UserScriptsHistory/main/scriptsIcon/highlight-keywords.png",
"readme_locales": "zh-TW,vi,en,ko"
},
{
"name": "高亮网页文本-迷你版",
"description": "在网页上自定义关键词突出显示包括滚动时动态加载的内容",
"group": "网页脚本",
"js_name": "highlight-keywords-mini.user.js",
"directory": "highlight-keywords-mini",
"version": "1.0.5.26",
"greasyfork_id": 498905,
"created_at": "2024-06-26 06:53:12",
"preview": null,
"icon": "https://raw.githubusercontent.com/ChinaGodMan/UserScriptsHistory/main/scriptsIcon/highlight-keywords-mini.png",
"readme_locales": "zh-TW,vi,en,ko"
},
{
"adult": true,
"name": "MiSSAV自动登录",
"description": "检测 MisssAV 状态,并且在未登录时自动登录",
"group": "成人脚本",
"js_name": "missav-auto-login-helper.user.js",
"directory": "missav-auto-login-helper",
"version": "1.0.1.7",
"greasyfork_id": 505325,
"created_at": "2024-08-27 04:15:17",
"preview": null,
"icon": "https://raw.githubusercontent.com/ChinaGodMan/UserScriptsHistory/main/scriptsIcon/missav-auto-login-helper.png",
"readme_locales": "zh-TW,vi,en,ko"
},
{
"adult": true,
"name": "xhamster 视频一键下载助手",
"description": "xhamster 视频一键下载 | xhamster.com | 无需登录直接下载 | 可下载所有可观看分辨率",
"group": "成人脚本",
"js_name": "xhamster-downloader.user.js",
"directory": "xhamster-downloader",
"version": null,
"greasyfork_id": 529043,
"created_at": null,
"preview": "https://s2.loli.net/2025/03/07/MgBqAsFSGbptCHx.png",
"icon": "https://raw.githubusercontent.com/ChinaGodMan/UserScriptsHistory/main/scriptsIcon/xhamster-downloader.png",
"readme_locales": "zh-TW,vi,en,ko"
},
{
"adult": true,
"name": "XnxxVideos 视频一键下载助手",
"description": "XnxxVideos 视频一键下载 | xnxx.com | 无需登录直接下载 | 可下载所有可观看分辨率",
"group": "成人脚本",
"js_name": "xnxx-downloader.user.js",
"directory": "xnxx-downloader",
"version": null,
"greasyfork_id": 529044,
"created_at": null,
"preview": "https://s2.loli.net/2025/03/07/cvMUsKLmFzaDNhG.png",
"icon": "https://www.xnxx.com/apple-touch-icon.png",
"readme_locales": "zh-TW,vi,en,ko"
},
{
"adult": true,
"name": "xvideos推送下载",
"description": "1.自动播放 2.自动宽屏 3.高画质播放 4.点击推送下片 5.下载缩略图",
"group": "成人脚本",
"js_name": "xvideos-enhance.user.js",
"directory": "xvideos-enhance",
"version": "2025.03.05.0127",
"greasyfork_id": 528798,
"created_at": null,
"preview": "https://greasyfork.s3.us-east-2.amazonaws.com/n5gszupnqiigj78b72756pvp1xx6",
"icon": "https://raw.githubusercontent.com/ChinaGodMan/UserScriptsHistory/main/scriptsIcon/xvideos-enhance.png",
"readme_locales": "zh-TW,vi,en,ko"
},
{
"adult": true,
"name": "Pornhub 视频一键下载",
"description": "Pornhub 视频一键下载 | pornhub.com | 无需登录直接下载 | 可直接下载免费观看付费下载视频 | 可下载已禁止下载的视频 | 可下载所有可观看分辨率",
"group": "成人脚本",
"js_name": "pornhub-download.user.js",
"directory": "pornhub-download",
"version": "2025.03.05.0145",
"greasyfork_id": 528800,
"created_at": null,
"preview": "https://s2.loli.net/2025/03/05/7SsnqhtxYIVz8ud.png",
"icon": "https://raw.githubusercontent.com/ChinaGodMan/UserScriptsHistory/main/scriptsIcon/pornhub-download.svg",
"readme_locales": "zh-TW,vi,en,ko"
},
{
"adult": true,
"name": "MissAV视频下载工具",
"description": "从当前missav播放页面嗅探视频的真实下载地址并下载",
"group": "成人脚本",
"js_name": "missav-m3u8-finder.user.js",
"directory": "missav-m3u8-finder",
"version": "2025.02.26.2355",
"greasyfork_id": 528160,
"created_at": null,
"preview": "https://s2.loli.net/2025/02/27/vrBIbTND28JKpda.png",
"icon": "https://raw.githubusercontent.com/ChinaGodMan/UserScriptsHistory/main/scriptsIcon/missav-auto-login-helper.png",
"readme_locales": "zh-TW,vi,en,ko"
},
{
"adult": true,
"name": "MissAV收藏管理器",
"description": "miss片单备份,支持下载图片保存视频信息.导出本地网页 支持导出到webdav",
"group": "成人脚本",
"js_name": "missav-explorer.user.js",
"directory": "missav-explorer",
"version": "1.2.3.73",
"greasyfork_id": 497682,
"created_at": "2024-06-12 10:58:39",
"preview": "https://greasyfork.s3.us-east-2.amazonaws.com/y01rsvz3iuz4f5kt043s6b5mddqr",
"icon": "https://raw.githubusercontent.com/ChinaGodMan/UserScriptsHistory/main/scriptsIcon/missav-explorer.png",
"readme_locales": "zh-TW,vi,en,ko"
},
{
"adult": true,
"name": "TissAV自动登录",
"description": "检测 TissAV 状态,并且在未登录时自动登录",
"group": "成人脚本",
"js_name": "thisav-auto-login-helper.user.js",
"directory": "thisav-auto-login-helper",
"version": "1.0.1.8",
"greasyfork_id": 506528,
"created_at": "2024-09-03 08:50:59",
"preview": null,
"icon": "https://raw.githubusercontent.com/ChinaGodMan/UserScriptsHistory/main/scriptsIcon/thisav-auto-login-helper.png",
"readme_locales": "zh-TW,vi,en,ko"
},
{
"adult": true,
"name": "JableTV自动登录",
"description": "检测 JableTV 状态,并且在未登录时自动登录",
"group": "成人脚本",
"js_name": "jable-auto-login-helper.user.js",
"directory": "jable-auto-login-helper",
"version": "1.0.0.10",
"greasyfork_id": 506730,
"created_at": "2024-09-04 13:43:00",
"preview": null,
"icon": "https://raw.githubusercontent.com/ChinaGodMan/UserScriptsHistory/main/scriptsIcon/jable-auto-login-helper.png",
"readme_locales": "zh-TW,vi,en,ko"
},
{
"name": "外语终结者",
"description": "识别非中文字符,如果长度大于 5 且翻译文本中不含中文,则替换为中文,需要可访问google的网络",
"group": "翻译脚本",
"js_name": "no-zh-terminator.user.js",
"directory": "no-zh-terminator",
"version": "1.4.0.0",
"greasyfork_id": 504890,
"created_at": "2024-08-24 10:37:08",
"preview": null,
"icon": "https://raw.githubusercontent.com/ChinaGodMan/UserScriptsHistory/main/scriptsIcon/no-zh-terminator.png",
"readme_locales": "zh-TW,vi,en,ko"
},
{
"name": "小窗口预览",
"description": "拖拽链接时在弹出窗口中打开链接,并在打开前提供预览,使用 Edge 的预读技术。同时在小窗口打开时在背后添加亚克力效果。",
"group": "网页脚本",
"js_name": "popup-window.user.js",
"directory": "popup-window",
"version": "2.5.1.4",
"greasyfork_id": 504880,
"created_at": "2024-08-24 06:51:35",
"preview": "https://greasyfork.s3.us-east-2.amazonaws.com/45120umjmiqk1lfkh0116ad6pnui",
"icon": "https://raw.githubusercontent.com/ChinaGodMan/UserScriptsHistory/main/scriptsIcon/popup-window.png",
"readme_locales": "zh-TW,vi,en,ko"
},
{
"name": "去除链接下划线",
"description": "去除网页链接的下划线",
"group": "网页脚本",
"js_name": "remove-link-underlines.user.js",
"directory": "remove-link-underlines",
"version": "1.2.0.63",
"greasyfork_id": 498625,
"created_at": "2024-06-23 11:35:07",
"preview": null,
"icon": "https://raw.githubusercontent.com/ChinaGodMan/UserScriptsHistory/main/scriptsIcon/remove-link-underlines.png",
"readme_locales": "zh-TW,vi,en,ko"
},
{
"name": "Script Finder油猴脚本查找器",
"description": "Script Finder 是一个用户脚本(userscript),它可以帮助你在任何网站上查找和管理用户脚本",
"group": "GreasyFork",
"js_name": "script-finder-plus.user.js",
"directory": "script-finder-plus",
"version": "0.1.6.80",
"greasyfork_id": 498904,
"created_at": "2024-06-26 06:43:47",
"preview": "https://s2.loli.net/2024/08/05/EBsldxGySe9Kf3w.png",
"icon": "https://raw.githubusercontent.com/ChinaGodMan/UserScriptsHistory/main/scriptsIcon/script-finder-plus.png",
"readme_locales": "zh-TW,vi,en,ko"
},
{
"name": "上下滚动小按钮",
"description": "页面右侧添加上下滚动按钮",
"group": "网页脚本",
"js_name": "scroll-button.user.js",
"directory": "scroll-button",
"version": "1.0.0.26",
"greasyfork_id": 497251,
"created_at": "2024-06-07 08:33:17",
"preview": "https://s2.loli.net/2024/08/24/nOVbHuZzvmdtRUc.png",
"icon": "https://raw.githubusercontent.com/ChinaGodMan/UserScriptsHistory/main/scriptsIcon/scroll-button.png",
"readme_locales": "zh-TW,vi,en,ko"
},
{
"name": "一键置顶和置底按钮",
"description": "修改自Greasyfork用户脚本 为网页添加置顶和置底按钮,方便在长页面中快速移动到顶部或底部。 增加向下滚动时按钮变色,3秒内无滚动自动停止",
"group": "网页脚本",
"js_name": "scroll-to-top-button.user.js",
"directory": "scroll-to-top-button",
"version": "1.2.0.72",
"greasyfork_id": 500255,
"created_at": "2024-07-11 13:57:29",
"preview": "https://s2.loli.net/2024/08/26/UrwMu2lphEia3Q7.png",
"icon": "https://raw.githubusercontent.com/ChinaGodMan/UserScriptsHistory/main/scriptsIcon/scroll-to-top-button.png",
"readme_locales": "zh-TW,vi,en,ko"
},
{
"name": "网页翻译——自动翻译为中文",
"description": "给每个非中文的网页右下角(可以调整到左下角)添加一个 google 翻译图标,该版本为中文翻译版本,只把外语翻译为中文,添加自动翻译",
"group": "翻译脚本",
"js_name": "translate-only-chinese.user.js",
"directory": "translate-only-chinese",
"version": "0.31.0.23",
"greasyfork_id": 505208,
"created_at": "2024-08-26 11:37:23",
"preview": null,
"icon": "https://raw.githubusercontent.com/ChinaGodMan/UserScriptsHistory/main/scriptsIcon/translate-only-chinese.png",
"readme_locales": "zh-TW,vi,en,ko"
},
{
"adult": true,
"name": "MissAV 增强小助手",
"description": "去除广告|后台播放|自动播放|自定义快进时间|完整标题|更多功能...",
"group": "成人脚本",
"js_name": "missav-enhancer.user.js",
"directory": "missav-enhancer",
"version": "2025.03.07.2114",
"greasyfork_id": 529125,
"created_at": "2025-03-07 21:14:34",
"preview": "https://s2.loli.net/2025/03/08/aqsivQ8Dtd1FVb7.png",
"icon": "https://raw.githubusercontent.com/ChinaGodMan/UserScriptsHistory/main/scriptsIcon/missav-auto-login-helper.png",
"readme_locales": "zh-TW,vi,en,ko"
},
{
"name": "显示Greasyfork用户注册时间,识别恶意评论",
"description": "如果你的脚本干涉了某些人的利益,收到恶意差评并不意外。恶意差评有两个特点,一是账号通常新注册,二是注册后不久就会给差评,且基本不会有后续活动。本脚本获取greasyfork用户注册时间,并显示在用户名旁边。如果用户名旁边显示的时间是未来的时间,那么这个用户很可能是恶意注册的账号。",
"group": "GreasyFork",
"js_name": "greasyfork-user-registration-time.user.js",
"directory": "greasyfork-user-registration-time",
"version": "2025.03.10.0959",
"greasyfork_id": 529359,
"created_at": "2025-03-10 09:59:11",
"preview": "https://s2.loli.net/2025/03/10/dcBIG1FPsuRJKpA.png",
"icon": "https://raw.githubusercontent.com/ChinaGodMan/UserScriptsHistory/main/scriptsIcon/greasyfork-webhook-sync-enhanced.svg",
"readme_locales": "zh-TW,vi,en,ko"
},
{
"name": "Twitter/X 隐藏转发的帖子",
"description": "自动隐藏转发转发内容,并且在首次加载时隐藏转发内容,移除烦人的广告",
"group": "Twitter",
"js_name": "twitter-hide-reposts.user.js",
"directory": "twitter-hide-reposts",
"version": "2025.03.11.0654",
"greasyfork_id": 529450,
"created_at": "2025-03-11 06:54:32",
"preview": "https://s2.loli.net/2025/03/11/lLQNYkoq3dajZKJ.jpg",
"icon": "https://raw.githubusercontent.com/ChinaGodMan/UserScriptsHistory/main/scriptsIcon/x.svg",
"readme_locales": "zh-TW,vi,en,ko"
},
{
"name": "Twitter 媒体下载",
"description": "一键下载视频/图片 | 并在批量下载时自动打包为一个ZIP文件下载",
"group": "Twitter",
"js_name": "twitter-media-downloader.user.js",
"directory": "twitter-media-downloader",
"version": "2025.03.11.0811",
"greasyfork_id": 529453,
"created_at": "2025-03-11 08:11:29",
"preview": "https://s2.loli.net/2025/03/11/GuFXlBNIHpbDnmr.png",
"icon": "https://raw.githubusercontent.com/ChinaGodMan/UserScriptsHistory/main/scriptsIcon/x.svg",
"readme_locales": "zh-TW,vi,en,ko"
},
{
"name": "GitHub Gist 代码片段复制与下载器",
"description": "向 Gist 文件添加复制按钮,以便轻松复制代码。| 向 Gist 文件添加下载按钮,以便轻松下载代码。",
"group": "GitHub 脚本",
"js_name": "github-gist-copier.user.js",
"directory": "github-gist-copier",
"version": "2025.03.12.0022",
"greasyfork_id": 529534,
"created_at": "2025-03-12 00:22:40",
"preview": "https://s2.loli.net/2025/03/12/Pxk1dNuOFlgheKj.png",
"icon": "https://raw.githubusercontent.com/ChinaGodMan/UserScriptsHistory/main/scriptsIcon/github-commit-viewer.png",
"readme_locales": "zh-TW,vi,en,ko"
},
{
"name": "YouTube 小助手",
"description": "YouTube 1.视频循环播放 2.截图下载 3.主题进度条",
"group": "YouTube",
"js_name": "youtube-helper.user.js",
"directory": "youtube-helper",
"version": "2025.03.15.0436",
"greasyfork_id": 529845,
"created_at": null,
"preview": "https://pparker1930.github.io/youtube-theme-progressbar.gif",
"icon": "https://www.youtube.com/s/desktop/ee47b5e0/img/logos/favicon_144x144.png",
"readme_locales": "zh-TW,vi,en,ko"
},
{
"name": "MarkDown 云剪笔记",
"description": "将网页内容转换为 Markdown 格式的工具,支持复制、下载、发送到 GitHub 和 Obsidian 等功能。",
"group": "网页脚本",
"js_name": "web-clipper.user.js",
"directory": "web-clipper",
"version": "2025.03.18.0713",
"greasyfork_id": 530139,
"created_at": "2025-03-18 07:13:13",
"preview": "https://s2.loli.net/2025/03/18/ETzhM3Q6DPRipA8.png",
"icon": "https://raw.githubusercontent.com/ChinaGodMan/UserScriptsHistory/main/scriptsIcon/web-clipper.png",
"readme_locales": "zh-TW,vi,en,ko"
},
{
"name": "GitHub 快捷键翻译助手",
"description": "监听键盘快捷键 Ctrl + Q,实现对文本进行翻译并将翻译结果替换到原文本框中的功能 支持Issue和pull request 页面.",
"group": "GitHub 脚本",
"js_name": "github-comment-translate.user.js",
"directory": "github-comment-translate",
"version": "2025.03.20.0728",
"greasyfork_id": 530312,
"created_at": "2025-03-20 07:28:08",
"preview": "https://s2.loli.net/2025/03/20/oCRakSZyIOmcpWX.gif",
"icon": "https://raw.githubusercontent.com/ChinaGodMan/UserScriptsHistory/main/scriptsIcon/github-commit-viewer.png",
"readme_locales": "zh-TW,vi,en,ko"
},
{
"name": "翻译小工具 | 翻译任何语言",
"description": "任何语言翻译及快捷一键翻译想要语言 | 页面翻译 | 选中文字( 按Ctrl )| 提供快捷方式,只需按一个键即可快速翻译想要语言 |英文学习 | 翻译文可设置,支持全球多数通用语言 | 有什么问题都可以反馈",
"group": "翻译脚本",
"js_name": "smart-translator-tool.user.js",
"directory": "smart-translator-tool",
"version": "2025.03.21.1227",
"greasyfork_id": 530406,
"created_at": "2025-03-21 12:27:54",
"preview": "https://img.xwyue.com/i/2024/06/25/667a850940f98.webp",
"icon": "https://s21.ax1x.com/2024/05/17/pkuVzUH.png",
"readme_locales": "zh-TW,vi,en,ko"
},
{
"name": "GitHub 星标仓库备注助手",
"description": "曾经 Star 过的仓库是不是忘记了它们的用途? 这是一个可以给你收藏过的仓库添加备注的的脚本,并且你备注的信息可以上传下载到 GitHub Gist",
"group": "GitHub 脚本",
"js_name": "github-starred-repo-note.user.js",
"directory": "github-starred-repo-note",
"version": "2025.04.21.1652",
"greasyfork_id": 533511,
"created_at": "2025-04-21 16:52:52",
"preview": "https://s2.loli.net/2025/04/21/vCNOWuMFUSRLGm5.png",
"icon": "https://raw.githubusercontent.com/ChinaGodMan/UserScriptsHistory/main/scriptsIcon/github-commit-viewer.png",
"readme_locales": "zh-TW,vi,en,ko"
},
{
"name": "GitHub 跳转到 DeepWiKi",
"description": "GitHub 存储库跳转到 DeepWiKi,支持电脑桌面端和移动端",
"group": "GitHub 脚本",
"js_name": "github-to-deepwiki.user.js",
"directory": "github-to-deepwiki",
"version": "2025.5.17.1",
"greasyfork_id": 536279,
"created_at": "2025-05-17 17:37:19",
"preview": "https://s2.loli.net/2025/05/17/VcHPTLnJ6Urf1dw.png",
"icon": "https://raw.githubusercontent.com/ChinaGodMan/UserScriptsHistory/main/scriptsIcon/deepwiki.png",
"readme_locales": "zh-TW,vi,en,ko"
},
{
"name": "GitHub 隐藏 Copilot",
"description": "在 GitHub 上隐藏愚蠢的 Copilot",
"group": "GitHub 脚本",
"js_name": "github-no-copilot.user.js",
"directory": "github-no-copilot",
"version": "2025.5.19.1",
"greasyfork_id": 536423,
"created_at": "2025-05-19 02:19:24",
"preview": "https://s2.loli.net/2025/05/19/g1GlMYV4rsoiSD2.png",
"icon": "https://raw.githubusercontent.com/ChinaGodMan/UserScriptsHistory/main/scriptsIcon/github-commit-viewer.png",
"readme_locales": "zh-TW,vi,en,ko"
},
{
"name": "GitHub 邮箱地址查找器",
"description": "使用公开事件数据(例如,推送到公开代码库的提交),获取用户的提交邮箱地址并将其显示在个人资料页面上。此外,它还添加了一个便捷的“复制到剪贴板”按钮,方便复制.",
"group": "GitHub 脚本",
"js_name": "github-email-finder.user.js",
"directory": "github-email-finder",
"version": "2025.5.26.1",
"greasyfork_id": 537309,
"created_at": "2025-05-26 17:27:25",
"preview": "https://s2.loli.net/2025/05/26/uHZBkn8x7PLWMmp.png",
"icon": "https://raw.githubusercontent.com/ChinaGodMan/UserScriptsHistory/main/scriptsIcon/github-commit-viewer.png",
"readme_locales": "zh-TW,vi,en,ko"
},
{
"name": "GitHub 显示文件和文件夹大小",
"description": "显示 GitHub 存储库中每个文件和文件夹的大小。它使用 GitHub API 获取详细信息,包括递归文件夹大小,从而轻松查看嵌套目录的总大小。 以 KB、MB 或 GB 显示文件大小",
"group": "GitHub 脚本",
"js_name": "github-file-size-viewer.user.js",
"directory": "github-file-size-viewer",
"version": "2025.5.26.1",
"greasyfork_id": 537310,
"created_at": "2025-05-26 18:12:15",
"preview": [
"https://s2.loli.net/2025/05/26/Awn71VdN3ZgHftK.png",
"https://s2.loli.net/2025/05/26/ou6nK5kidqFNHhe.png"
],
"icon": "https://raw.githubusercontent.com/ChinaGodMan/UserScriptsHistory/main/scriptsIcon/github-file-size-viewer.jpg",
"readme_locales": "zh-TW,vi,en,ko"
},
{
"name": "文本转链接",
"description": "把文字链接转换为可点击链接",
"group": "网页脚本",
"js_name": "text-to-link.user.js",
"directory": "text-to-link",
"version": "2025.5.26.1",
"greasyfork_id": 514262,
"created_at": "2025-05-26 18:50:36",
"preview": null,
"icon": "https://github.com/lkytal/GM/raw/master/icons/link.png",
"readme_locales": "zh-TW,vi,en,ko"
},
{
"name": "GitHub 共同协作者",
"description": "在 GitHub PR中添加一个按钮,以便在合并之前将所有 PR 参与者添加为共同作者.",
"group": "GitHub 脚本",
"js_name": "github-co-authors.user.js",
"directory": "github-co-authors",
"version": "2025.5.27.1",
"greasyfork_id": 537446,
"created_at": "2025-05-27 22:47:12",
"preview": [
"https://s2.loli.net/2025/05/27/NQwCL6jeE4WnBog.png",
"https://s2.loli.net/2025/05/27/mnyBwaU46Jtfbse.png"
],
"icon": "https://raw.githubusercontent.com/ChinaGodMan/UserScriptsHistory/main/scriptsIcon/github-co-authors.png",
"readme_locales": "zh-TW,vi,en,ko"
},
{
"name": "YouTube 稍后观看快捷键",
"description": "使用键盘快捷键将当前 YouTube 视频添加到 Youtube 稍后观看列表中或从中删除。",
"group": "YouTube",
"js_name": "youtube-watch-later-shortcut.user.js",
"directory": "youtube-watch-later-shortcut",
"version": "2025.6.2.1",
"greasyfork_id": 537622,
"created_at": "2025-06-02 10:28:57",
"preview": null,
"icon": "https://www.youtube.com/s/desktop/ee47b5e0/img/logos/favicon_144x144.png",
"readme_locales": "zh-TW,vi,en,ko"
},
{
"name": "干净的博客文章",
"description": "删除烦人的侧边栏、评论块、广告等。",
"group": "博客网站",
"js_name": "clean-blog-articles.user.js",
"directory": "clean-blog-articles",
"version": "2025.6.2.1",
"greasyfork_id": 537643,
"created_at": "2025-06-02 10:42:29",
"preview": null,
"icon": "https://g.csdnimg.cn/static/logo/favicon32.ico",
"readme_locales": "zh-TW,vi,en,ko"
},
{
"name": "知乎的深色主题",
"description": "知乎的深色主题风格",
"group": "博客网站",
"js_name": "zhihu-black.user.js",
"directory": "zhihu-black",
"version": "2025.6.2.1",
"greasyfork_id": 537644,
"created_at": "2025-06-02 10:49:27",
"icon": "https://static.zhihu.com/heifetz/favicon.ico",
"preview": null,
"readme_locales": null
},
{
"name": "微信网页版深色模式",
"description": "启用网页微信全屏窗口,深色模式",
"group": "博客网站",
"js_name": "wechat-black.user.js",
"directory": "wechat-black",
"version": "2025.6.2.1",
"greasyfork_id": 537645,
"created_at": "2025-06-02 10:54:23",
"icon": "https://res.wx.qq.com/a/wx_fed/assets/res/NTI4MWU5.ico",
"preview": null,
"readme_locales": null
},
{
"name": "ChatGPT代码工具",
"description": "为 ChatGPT 代码块添加功能,包括保存或复制代码片段的选项。",
"group": "AI 脚本",
"js_name": "chatgpt-code-tools.user.js",
"directory": "chatgpt-code-tools",
"version": "2025.6.2.1",
"greasyfork_id": 537646,
"created_at": "2025-06-02 11:04:33",
"preview": null,
"icon": "https://raw.githubusercontent.com/ChinaGodMan/UserScriptsHistory/main/scriptsIcon/chatgpt-plus.png",
"readme_locales": "zh-TW,vi,en,ko"
},
{
"name": "ChatGPT 插入提示词",
"description": "通过组合键将指令插入 ChatGPT 输入框",
"group": "AI 脚本",
"js_name": "chatgpt-insert-text.user.js",
"directory": "chatgpt-insert-text",
"version": "2025.6.2.1",
"greasyfork_id": 537647,
"created_at": "2025-06-02 11:13:17",
"icon": "https://raw.githubusercontent.com/ChinaGodMan/UserScriptsHistory/main/scriptsIcon/chatgpt-plus.png",
"readme_locales": "zh-TW,vi,en,ko"
},
{
"name": "ChatGPT 保存对话",
"description": "将对话保存为 .txt 文件",
"group": "AI 脚本",
"js_name": "chatgpt-save-conversation.user.js",
"directory": "chatgpt-save-conversation",
"version": "2025.6.2.1",
"greasyfork_id": 537648,
"created_at": "2025-06-02 11:19:37",
"icon": "https://raw.githubusercontent.com/ChinaGodMan/UserScriptsHistory/main/scriptsIcon/chatgpt-plus.png",
"readme_locales": "zh-TW,vi,en,ko"
},
{
"name": "TikTok 用户信息",
"description": "TikTok 在个人资料上显示更多扩展信息",
"group": "TikTok",
"js_name": "tiktok-user-info.user.js",
"directory": "tiktok-user-info",
"version": "2025.6.2.1",
"greasyfork_id": 537677,
"created_at": "2025-06-02 11:24:24",
"icon": "https://raw.githubusercontent.com/bruddaa/UserScripts/refs/heads/main/TikTok%20User%20Info/tt_logo.png",
"readme_locales": "zh-TW,vi,en,ko"
},
{
"name": "Download videos from Bilibili (No Bangumi)",
"description": "下载哔哩哔哩视频(不支持番剧)",
"group": "Bilibili",
"js_name": "bilibili-video-downloader.user.js",
"directory": "bilibili-video-downloader",
"version": "2025.6.2.1",
"greasyfork_id": 537678,
"created_at": "2025-06-02 11:36:32",
"preview": null,
"icon": "https://i0.hdslb.com/bfs/static/jinkela/long/images/512.png",
"readme_locales": null
},
{
"name": "哔哩哔哩直播间屏蔽工具",
"description": "哔哩哔哩直播间屏蔽工具,支持管理列表,批量屏蔽,导出、导入列表等……",
"group": "Bilibili",
"js_name": "bilibili-liveroom-filter.user.js",
"directory": "bilibili-liveroom-filter",
"version": "2025.6.2.1",
"greasyfork_id": 537928,
"created_at": "2025-06-02 11:40:25",
"icon": "https://i0.hdslb.com/bfs/static/jinkela/long/images/512.png",
"readme_locales": null
},
{
"adult": true,
"name": "刚满 18 岁",
"description": "因为我刚满 18 岁,所以我可以看成人内容",
"group": "成人脚本",
"js_name": "cnm.r18.user.js",
"directory": "cnm.r18",
"version": "2025.6.2.1",
"greasyfork_id": 537679,
"created_at": "2025-06-02 11:49:06",
"icon": "https://raw.githubusercontent.com/ChinaGodMan/UserScriptsHistory/main/scriptsIcon/missav-auto-login-helper.png",
"readme_locales": "zh-TW,vi,en,ko"
},
{
"name": "新浪微博移动版跳转",
"description": "新浪微博自动跳转移动版,支持微博、文章、视频",
"group": "博客网站",
"js_name": "weibo-mobile-redirect.user.js",
"directory": "weibo-mobile-redirect",
"version": "2025.6.2.1",
"greasyfork_id": 537683,