This repository has been archived by the owner on Nov 23, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplugins.json
1502 lines (1502 loc) · 42.5 KB
/
plugins.json
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
[
{
"module_name": "nonebot_plugin_status",
"project_link": "nonebot-plugin-status",
"name": "服务器状态查看",
"desc": "通过戳一戳获取服务器状态",
"author": "yanyongyu",
"homepage": "https://github.com/cscs181/QQ-GitHub-Bot/tree/master/src/plugins/nonebot_plugin_status",
"tags": [
{
"label": "t:server",
"color": "#aeeaa8"
}
],
"is_official": true
},
{
"module_name": "haruka_bot",
"project_link": "haruka-bot",
"name": "HarukaBot",
"desc": "将B站UP主的动态和直播信息推送至QQ",
"author": "SK-415",
"homepage": "https://github.com/SK-415/HarukaBot",
"tags": [
{
"label": "t:bilibili",
"color": "#e55d80"
}
],
"is_official": false
},
{
"module_name": "nonebot_plugin_rauthman",
"project_link": "nonebot-plugin-rauthman",
"name": "RAM 授权管理",
"desc": "基于规则的授权管理",
"author": "Lancercmd",
"homepage": "https://github.com/Lancercmd/nonebot_plugin_rauthman",
"tags": [
{
"label": "t:rule",
"color": "#4ec9b0"
}
],
"is_official": false
},
{
"module_name": "nonebot_plugin_docs",
"project_link": "nonebot-plugin-docs",
"author": "nonebot",
"desc": "在本地浏览NoneBot文档",
"name": "NoneBot离线文档",
"homepage": "https://github.com/nonebot/nonebot2/tree/master/packages/nonebot-plugin-docs",
"tags": [],
"is_official": true
},
{
"module_name": "nonebot_plugin_sentry",
"project_link": "nonebot-plugin-sentry",
"author": "yanyongyu",
"desc": "使用Sentry监控机器人日志并处理报错",
"name": "Sentry日志监控",
"homepage": "https://github.com/cscs181/QQ-GitHub-Bot/tree/master/src/plugins/nonebot_plugin_sentry",
"tags": [
{
"label": "t:log",
"color": "#6be3ea"
}
],
"is_official": true
},
{
"module_name": "nonebot_plugin_apscheduler",
"project_link": "nonebot-plugin-apscheduler",
"author": "yanyongyu",
"desc": "APScheduler 定时任务插件",
"name": "定时任务",
"homepage": "https://github.com/nonebot/plugin-apscheduler",
"tags": [],
"is_official": true
},
{
"module_name": "nonebot_plugin_picsearcher",
"project_link": "nonebot-plugin-picsearcher",
"author": "synodriver",
"desc": "从基本上所有你想的出名字的搜图平台找图片",
"name": "图片搜索",
"homepage": "https://github.com/synodriver/nonebot_plugin_picsearcher",
"tags": [],
"is_official": false
},
{
"module_name": "nonebot_plugin_navicat",
"project_link": "nonebot-plugin-navicat",
"author": "synodriver",
"desc": "连接至各种数据库,为其他插件导出连接对象",
"name": "通用数据库连接",
"homepage": "https://github.com/synodriver/nonebot_plugin_navicat",
"tags": [],
"is_official": false
},
{
"module_name": "nonebot_plugin_translator",
"project_link": "nonebot-plugin-translator",
"author": "Lancercmd",
"desc": "基于腾讯机器翻译 TMT",
"name": "多语种翻译插件",
"homepage": "https://github.com/Lancercmd/nonebot_plugin_translator",
"tags": [
{
"label": "t:func",
"color": "#dcdcaa"
}
],
"is_official": false
},
{
"module_name": "nonebot_plugin_mqtt",
"project_link": "nonebot-plugin-mqtt",
"author": "synodriver",
"desc": "接入mqtt网络,订阅和发布消息",
"name": "mqtt接入",
"homepage": "https://github.com/synodriver/nonebot_plugin_mqtt",
"tags": [],
"is_official": false
},
{
"module_name": "nonebot_plugin_songpicker2",
"project_link": "nonebot-plugin-songpicker2",
"author": "maxesisn",
"desc": "点播歌曲,支持候选菜单、热评显示,数据源为网易云",
"name": "songpicker2",
"homepage": "https://github.com/maxesisn/nonebot_plugin_songpicker2",
"tags": [],
"is_official": false
},
{
"module_name": "nonebot_plugin_strman",
"project_link": "nonebot-plugin-strman",
"author": "echobot-dev",
"desc": "通过字符串标签在文件中集中管理字符串",
"name": "字符串管理工具",
"homepage": "https://github.com/echobot-dev/nonebot-plugin-strman",
"tags": [],
"is_official": false
},
{
"module_name": "nonebot_bison",
"project_link": "nonebot-bison",
"author": "felinae98",
"desc": "订阅来自微博,B站,网易云,RSS以及各种网站的动态,转发到QQ群中",
"name": "Bison",
"homepage": "https://github.com/felinae98/nonebot-bison",
"tags": [
{
"label": "a:onebot",
"color": "#000000"
}
],
"is_official": false
},
{
"module_name": "nonebot-plugin-ncm",
"project_link": "nonebot-plugin-ncm",
"author": "kitUIN",
"desc": "网易云 无损音乐 点歌/下载",
"name": "网易云无损音乐下载",
"homepage": "https://github.com/kitUIN/nonebot-plugin-ncm",
"tags": [
{
"label": "a:onebot",
"color": "#000000"
},
{
"label": "a:cqhttp",
"color": "#000000"
},
{
"label": "t:Netease",
"color": "#ec4141"
}
],
"is_official": false
},
{
"module_name": "nonebot_plugin_cocdicer",
"project_link": "nonebot-plugin-cocdicer",
"author": "abrahum",
"desc": "COC跑团骰子娘",
"name": "nonebot-plugin-cocdicer",
"homepage": "https://github.com/abrahum/nonebot_plugin_cocdicer",
"tags": [],
"is_official": false
},
{
"module_name": "nonebot_plugin_trpglogger",
"project_link": "nonebot-plugin-trpglogger",
"author": "j1g5awi",
"desc": "记录跑团记录并上传",
"name": "跑团记录记录器",
"homepage": "https://github.com/thereisnodice/TRPGLogger",
"tags": [
{
"label": "t:TRPG",
"color": "#80070B"
}
],
"is_official": false
},
{
"module_name": "nonebot_plugin_r6s",
"project_link": "nonebot-plugin-r6s",
"author": "abrahum",
"desc": "查询彩虹六号玩家信息",
"name": "nonebot-plugin-r6s",
"homepage": "https://github.com/abrahum/nonebot_plugin_r6s",
"tags": [],
"is_official": false
},
{
"module_name": "nonebot_plugin_guess",
"project_link": "nonebot-plugin-guess",
"author": "ffreemt",
"desc": "多次互动猜名字游戏,自带猜城市名,可定制",
"name": "猜猜看",
"homepage": "https://github.com/ffreemt/nonebot-plugin-guess-game",
"tags": [],
"is_official": false
},
{
"module_name": "nonebot_plugin_abbrreply",
"project_link": "nonebot-plugin-abbrreply",
"author": "anlen123",
"desc": "输入拼音首字母,猜测文字",
"name": "缩写查询器",
"homepage": "https://github.com/anlen123/nonebot_plugin_abbrreply",
"tags": [],
"is_official": false
},
{
"module_name": "nonebot_plugin_biliav",
"project_link": "nonebot-plugin-biliav",
"author": "knva",
"desc": "将用户发的av号或者bv号转成小程序返回",
"name": "biliav小程序转换器",
"homepage": "https://github.com/knva/nonebot_plugin_biliav",
"tags": [],
"is_official": false
},
{
"module_name": "nonebot_plugin_manager",
"project_link": "nonebot-plugin-manager",
"name": "插件管理器",
"desc": "基于 import hook 的插件管理",
"author": "j1g5awi",
"homepage": "https://github.com/nonepkg/nonebot-plugin-manager",
"tags": [
{
"label": "t:PluginManager",
"color": "#80070B"
}
],
"is_official": false
},
{
"module_name": "nonebot_plugin_analysis_bilibili",
"project_link": "nonebot-plugin-analysis-bilibili",
"name": "bilibili视频、番剧解析",
"desc": "自动解析bilibili视频、番剧解析",
"author": "mengshouer",
"homepage": "https://github.com/mengshouer/nonebot_plugin_analysis_bilibili",
"tags": [],
"is_official": false
},
{
"module_name": "nonebot_plugin_localstore",
"project_link": "nonebot-plugin-localstore",
"name": "本地数据存储",
"desc": "存储插件数据至本地文件",
"author": "yanyongyu",
"homepage": "https://github.com/nonebot/plugin-localstore",
"tags": [],
"is_official": true
},
{
"module_name": "nonebot_plugin_puppet",
"project_link": "nonebot-plugin-puppet",
"name": "nonebot_plugin_puppet",
"desc": "高度自定义的会话转接",
"author": "j1g5awi",
"homepage": "https://github.com/nonepkg/nonebot-plugin-puppet",
"tags": [
{
"label": "a:cqhttp",
"color": "#000000"
}
],
"is_official": false
},
{
"module_name": "nonebot_plugin_mcstatus",
"project_link": "nonebot-plugin-mcstatus",
"name": "Minecraft 服务器状态查询",
"desc": "顾名思义",
"author": "j1g5awi",
"homepage": "https://github.com/nonepkg/nonebot-plugin-mcstatus",
"tags": [
{
"label": "t:Minecraft",
"color": "#80070B"
}
],
"is_official": false
},
{
"module_name": "nonebot_plugin_help",
"project_link": "nonebot-plugin-help",
"name": "Nonebot2插件轻量帮助列表",
"desc": "读取并提供已加载Nonebot2插件开发者提供的帮助信息(用途)",
"author": "XZhouQD",
"homepage": "https://github.com/XZhouQD/nonebot-plugin-help",
"tags": [],
"is_official": false
},
{
"module_name": "nonebot_plugin_gamedraw",
"project_link": "nonebot-plugin-gamedraw",
"name": "nonebot_plugin_gamedraw",
"desc": "基于爬取wiki实现自动更新的抽卡,目前支持赛马娘,原神,明日方舟,坎公骑冠剑,公主连结(国/台),碧蓝航线,FGO,阴阳师",
"author": "HibiKier",
"homepage": "https://github.com/HibiKier/nonebot_plugin_gamedraw",
"tags": [],
"is_official": false
},
{
"module_name": "nonebot_plugin_alias",
"project_link": "nonebot-plugin-alias",
"name": "alias命令别名",
"desc": "为复杂的命令创建别名",
"author": "MeetWq",
"homepage": "https://github.com/MeetWq/nonebot-plugin-alias",
"tags": [],
"is_official": false
},
{
"module_name": "nonebot_plugin_withdraw",
"project_link": "nonebot-plugin-withdraw",
"name": "Nonebot2 消息撤回插件",
"desc": "用于让机器人撤回自己发出的消息",
"author": "MeetWq",
"homepage": "https://github.com/MeetWq/nonebot-plugin-withdraw",
"tags": [],
"is_official": false
},
{
"module_name": "nonebot_plugin_pixivrank_search",
"project_link": "nonebot-plugin-pixivrank-search",
"name": "nonebot_plugin_pixivrank_search",
"desc": "基于RSSHUB阅读器的P站排行和P站搜图",
"author": "HibiKier",
"homepage": "https://github.com/HibiKier/nonebot_plugin_pixivrank_search",
"tags": [],
"is_official": false
},
{
"module_name": "nonebot_plugin_russian",
"project_link": "nonebot-plugin-russian",
"name": "nonebot_plugin_russian",
"desc": "群内小游戏,使用金币赌注的俄罗斯轮盘",
"author": "HibiKier",
"homepage": "https://github.com/HibiKier/nonebot_plugin_russian",
"tags": [],
"is_official": false
},
{
"module_name": "nonebot_plugin_setu",
"project_link": "nonebot-plugin-setu",
"name": "nonebot_plugin_setu",
"desc": "基于loliconImage Api的涩图插件,内置涩图CD",
"author": "ayanamiblhx",
"homepage": "https://github.com/ayanamiblhx/nonebot_plugin_setu",
"tags": [],
"is_official": false
},
{
"module_name": "nonebot_plugin_heweather",
"project_link": "nonebot-plugin-heweather",
"name": "和风天气",
"desc": "获取和风天气信息并转换为图片",
"author": "kexue-z",
"homepage": "https://github.com/kexue-z/nonebot-plugin-heweather",
"tags": [
{
"label": "a:onebot",
"color": "#000000"
}
],
"is_official": false
},
{
"module_name": "nonebot_plugin_autohelp",
"project_link": "nonebot-plugin-autohelp",
"name": "nonebot-plugin-autohelp",
"desc": "响应help/菜单/帮助(群消息或私信)并提供已载入插件的帮助信息(如命令名,aliases,模块文档)",
"author": "ffreemt",
"homepage": "https://github.com/ffreemt/nonebot-plugin-autohelp",
"tags": [],
"is_official": false
},
{
"module_name": "nonebot_plugin_flexperm",
"project_link": "nonebot-plugin-flexperm",
"name": "nonebot-plugin-flexperm",
"desc": "精细化的 NoneBot 权限管理插件",
"author": "rmuchan",
"homepage": "https://github.com/rmuchan/nonebot-plugin-flexperm",
"tags": [],
"is_official": false
},
{
"module_name": "nonebot_plugin_epicfree",
"project_link": "nonebot-plugin-epicfree",
"name": "Epic 限免游戏资讯",
"desc": "EpicGameStore 喜加一资讯插件,发送「喜加一」逝世看吧!",
"author": "monsterxcn",
"homepage": "https://github.com/monsterxcn/nonebot_plugin_epicfree",
"tags": [],
"is_official": false
},
{
"module_name": "ELF_RSS2",
"project_link": "ELF-RSS",
"name": "ELF_RSS",
"desc": "QQ机器人 RSS订阅 插件,订阅源建议选择 RSSHub",
"author": "Quan666",
"homepage": "https://github.com/Quan666/ELF_RSS",
"tags": [],
"is_official": false
},
{
"module_name": "nonebot_plugin_atri",
"project_link": "nonebot-plugin-atri",
"name": "ATRI语音包",
"desc": "一个ATRI语音包,基于文本相似度匹配回复",
"author": "FYWinds",
"homepage": "https://github.com/FYWinds/nonebot-plugin-atri",
"tags": [
{
"label": "a:onebot",
"color": "#000000"
},
{
"label": "a:cqhttp",
"color": "#000000"
}
],
"is_official": false
},
{
"module_name": "nonebot_plugin_filehost",
"project_link": "nonebot-plugin-filehost",
"name": "HTTP静态文件托管",
"desc": "一款 HTTP 静态文件托管插件, 为跨机文件传输提供了优雅的解决方案",
"author": "mnixry",
"homepage": "https://github.com/mnixry/nonebot-plugin-filehost",
"tags": [],
"is_official": true
},
{
"module_name": "nonebot_plugin_simplemusic",
"project_link": "nonebot-plugin-simplemusic",
"name": "SimpleMusic",
"desc": "最简Q群点歌插件,支持QQ音乐、网易云、酷我、酷狗、咪咕、B站音频区",
"author": "MeetWq",
"homepage": "https://github.com/MeetWq/nonebot-plugin-simplemusic",
"tags": [
{
"label": "a:onebot",
"color": "#000000"
}
],
"is_official": false
},
{
"module_name": "nonebot_plugin_phlogo",
"project_link": "nonebot-plugin-phlogo",
"name": "pornhub风格图标生成",
"desc": "生成pornhub风格logo",
"author": "kexue-z",
"homepage": "https://github.com/kexue-z/nonebot-plugin-phlogo",
"tags": [],
"is_official": false
},
{
"module_name": "nb2chan",
"project_link": "nb2chan",
"name": "nb2chan",
"desc": "Nonebot2酱推送",
"author": "yucongo",
"homepage": "https://github.com/ffreemt/nb2chan",
"tags": [],
"is_official": false
},
{
"module_name": "nonebot_plugin_setu_now",
"project_link": "nonebot-plugin-setu-now",
"name": "nonebot-plugin-setu-now",
"desc": "另一个色图插件,即时下载并保存,可选WebDAV。可选特殊色图",
"author": "kexue-z",
"homepage": "https://github.com/kexue-z/nonebot-plugin-setu-now",
"tags": [
{
"label": "a:onebot",
"color": "#000000"
}
],
"is_official": false
},
{
"module_name": "leetcode",
"project_link": "nonebot-plugin-leetcode",
"name": "leetcode提醒机器人",
"desc": " 安装该插件后能往指定qq和指定qq群定时发送leetcode每日一题",
"author": "zxz0415",
"homepage": "https://github.com/zxz0415/leetcode",
"tags": [],
"is_official": false
},
{
"module_name": "nonebot_plugin_youthstudy",
"project_link": "nonebot-plugin-youthstudy",
"name": "nonebot_plugin_youthstudy",
"desc": "基于nonebot的青年大学习插件,用来获取最新一期的青年大学习答案",
"author": "ayanamiblhx",
"homepage": "https://github.com/ayanamiblhx/nonebot_plugin_youthstudy",
"tags": [],
"is_official": false
},
{
"module_name": "gocqapi",
"project_link": "gocqapi",
"name": "gocqapi",
"desc": "对 go-cqhttp 的 API 调用添加了类型注解与滥用OOP的返回值Model支持,远离魔法方法的Dict[Any, Any]",
"author": "FYWinds",
"homepage": "https://github.com/FYWinds/gocqapi",
"tags": [
{
"label": "a:onebot",
"color": "#000000"
},
{
"label": "a:cqhttp",
"color": "#000000"
}
],
"is_official": false
},
{
"module_name": "nonebot_plugin_asoulcnki",
"project_link": "nonebot-plugin-asoulcnki",
"name": "枝网查重",
"desc": "随机小作文;查询发病小作文复制比",
"author": "MeetWq",
"homepage": "https://github.com/MeetWq/nonebot-plugin-asoulcnki",
"tags": [],
"is_official": false
},
{
"module_name": "nonebot_plugin_petpet",
"project_link": "nonebot-plugin-petpet",
"name": "头像表情包",
"desc": "制作摸头等头像相关沙雕表情包",
"author": "MeetWq",
"homepage": "https://github.com/MeetWq/nonebot-plugin-petpet",
"tags": [],
"is_official": false
},
{
"module_name": "nonebot_plugin_shindan",
"project_link": "nonebot-plugin-shindan",
"name": "ShindanMaker",
"desc": "使用 ShindanMaker 网站的趣味占卜",
"author": "MeetWq",
"homepage": "https://github.com/MeetWq/nonebot-plugin-shindan",
"tags": [],
"is_official": false
},
{
"module_name": "nonebot_plugin_vf",
"project_link": "nonebot-plugin-vf",
"name": "虚拟朋友",
"desc": "基于小冰框架的人工智能聊天机器人",
"author": "snowyfirefly",
"homepage": "https://github.com/snowyfirefly/VirtualFriends",
"tags": [],
"is_official": false
},
{
"module_name": "nonebot_plugin_code",
"project_link": "nonebot-plugin-code",
"name": "在线运行代码",
"desc": "在线运行代码插件,支持输入",
"author": "yzyyz1387",
"homepage": "https://github.com/yzyyz1387/nonebot_plugin_code",
"tags": [
{
"label": "t:func",
"color": "#dcdcaa"
}
],
"is_official": false
},
{
"module_name": "nonebot_plugin_heisi",
"project_link": "nonebot-plugin-heisi",
"name": "随机黑丝",
"desc": "发送一张黑丝涩图,内置CD",
"author": "yzyyz1387",
"homepage": "https://github.com/yzyyz1387/nonebot_plugin_heisi",
"tags": [],
"is_official": false
},
{
"module_name": "nonebot_plugin_picsbank",
"project_link": "nonebot-plugin-picsbank",
"name": "picsbank",
"desc": "匹配图片进行回答",
"author": "Diaosi1111",
"homepage": "https://github.com/Diaosi1111/nonebot_plugin_picsbank",
"tags": [],
"is_official": false
},
{
"module_name": "nonebot_plugin_tvseries",
"project_link": "nonebot-plugin-tvseries",
"name": "剧集更新列表",
"desc": "获取聚集更新",
"author": "kexue-z",
"homepage": "https://github.com/kexue-z/nonebot-plugin-tvseries",
"tags": [
{
"label": "a:onebot",
"color": "#000000"
}
],
"is_official": false
},
{
"module_name": "nonebot_plugin_lolmatch",
"project_link": "nonebot-plugin-lolmatch",
"name": "lol比赛信息",
"desc": "简单的lol比赛信息插件,订阅后会定时推送当日比赛结果",
"author": "Diaosi1111",
"homepage": "https://github.com/Diaosi1111/nonebot_plugin_lolmatch",
"tags": [],
"is_official": false
},
{
"module_name": "OlivOS",
"project_link": "olivos.nb2",
"name": "OlivOS.nb2",
"desc": "在 NoneBot2 中加载 OlivOS 插件",
"author": "j1g5awi",
"homepage": "https://github.com/nonepkg/OlivOS.nb2",
"tags": [
{
"label": "t:OlivOS",
"color": "#00a0ea"
}
],
"is_official": false
},
{
"module_name": "nonebot_plugin_htmlrender",
"project_link": "nonebot-plugin-htmlrender",
"name": "通过浏览器来生成图片",
"desc": "通过playwright加一点点前端知识来简单的生成图片",
"author": "kexue-z",
"homepage": "https://github.com/kexue-z/nonebot-plugin-htmlrender",
"tags": [
{
"label": "a:onebot",
"color": "#000000"
}
],
"is_official": false
},
{
"module_name": "nonebot_plugin_admin",
"project_link": "nonebot-plugin-admin",
"name": "简易群管",
"desc": "简易群管 踢 禁 改",
"author": "yzyyz1387",
"homepage": "https://github.com/yzyyz1387/nonebot_plugin_admin",
"tags": [],
"is_official": false
},
{
"module_name": "nonebot_plugin_logo",
"project_link": "nonebot-plugin-logo",
"name": "多种风格logo生成",
"desc": "PornHub、Youtube 等风格logo生成",
"author": "MeetWq",
"homepage": "https://github.com/MeetWq/nonebot-plugin-logo",
"tags": [],
"is_official": false
},
{
"module_name": "nonebot_plugin_memes",
"project_link": "nonebot-plugin-memes",
"name": "表情包制作",
"desc": "鲁迅说、喜报 等表情包制作",
"author": "MeetWq",
"homepage": "https://github.com/MeetWq/nonebot-plugin-memes",
"tags": [],
"is_official": false
},
{
"module_name": "nonebot_plugin_repeater",
"project_link": "nonebot-plugin-repeater",
"name": "群聊复读机",
"desc": "谁不喜欢+1呢?",
"author": "ninthseason",
"homepage": "https://github.com/ninthseason/nonebot-plugin-repeater",
"tags": [],
"is_official": false
},
{
"module_name": "nonebot_plugin_directlinker",
"project_link": "nonebot-plugin-directlinker",
"name": "群文件直链提取器",
"desc": "提取群文件的下载直链。",
"author": "ninthseason",
"homepage": "https://github.com/ninthseason/nonebot-plugin-directlinker",
"tags": [
{
"label": "a:cqhttp",
"color": "#ea5252"
}
],
"is_official": false
},
{
"module_name": "nonebot_plugin_forwarder",
"project_link": "nonebot-plugin-forwarder",
"name": "转发姬",
"desc": "群聊消息实时转发",
"author": "ninthseason",
"homepage": "https://github.com/ninthseason/nonebot_plugin_forwarder",
"tags": [],
"is_official": false
},
{
"module_name": "nonebot_plugin_roll",
"project_link": "nonebot-plugin-roll",
"name": "扔骰子",
"desc": "掷骰!扔出指定个数的多面骰子🎲",
"author": "KafCoppelia",
"homepage": "https://github.com/KafCoppelia/nonebot_plugin_roll",
"tags": [
{
"label": "t:roll",
"color": "#ea5252"
}
],
"is_official": false
},
{
"module_name": "nonebot_plugin_crazy_thursday",
"project_link": "nonebot-plugin-crazy-thursday",
"name": "疯狂星期四",
"desc": "天天疯狂!随机输出KFC疯狂星期四文案🍗",
"author": "KafCoppelia",
"homepage": "https://github.com/KafCoppelia/nonebot_plugin_crazy_thursday",
"tags": [
{
"label": "t:Thursday",
"color": "#ea5252"
}
],
"is_official": false
},
{
"module_name": "nonebot_plugin_covid19_news",
"project_link": "nonebot-plugin-covid19-news",
"name": "新冠疫情查询",
"desc": "查询国内城市新冠疫情信息与政策",
"author": "Zeta-qixi",
"homepage": "https://github.com/Zeta-qixi/nonebot-plugin-covid19-news",
"tags": [],
"is_official": false
},
{
"module_name": "nonebot_plugin_remake",
"project_link": "nonebot-plugin-remake",
"name": "人生重开模拟器",
"desc": "这垃圾人生一秒也不想待了?立即重开!",
"author": "MeetWq",
"homepage": "https://github.com/MeetWq/nonebot-plugin-remake",
"tags": [
{
"label": "a:onebot",
"color": "#000000"
},
{
"label": "a:cqhttp",
"color": "#000000"
}
],
"is_official": false
},
{
"module_name": "nonebot_plugin_caiyunai",
"project_link": "nonebot-plugin-caiyunai",
"name": "彩云小梦AI续写",
"desc": "基于彩云小梦的小说AI续写插件",
"author": "MeetWq",
"homepage": "https://github.com/MeetWq/nonebot-plugin-caiyunai",
"tags": [
{
"label": "a:onebot",
"color": "#000000"
},
{
"label": "a:cqhttp",
"color": "#000000"
}
],
"is_official": false
},
{
"module_name": "nonebot_plugin_weather_lite",
"project_link": "nonebot-plugin-weather-lite",
"name": "天气查询",
"desc": "使用wttr.in的在线天气查询。",
"author": "zjkwdy",
"homepage": "https://github.com/zjkwdy/nonebot_plugin_weather_lite",
"tags": [
{
"label": "t:天气",
"color": "#6ec3d9"
}
],
"is_official": false
},
{
"module_name": "nonebot_plugin_fortune",
"project_link": "nonebot-plugin-fortune",
"name": "今日运势",
"desc": "抽签!抽取你的今日运势🙏",
"author": "KafCoppelia",
"homepage": "https://github.com/KafCoppelia/nonebot_plugin_fortune",
"tags": [
{
"label": "a:onebot",
"color": "#6952ea"
},
{
"label": "t:fortune",
"color": "#ea6f52"
}
],
"is_official": false
},
{
"module_name": "nonebot_plugin_tarot",
"project_link": "nonebot-plugin-tarot",
"name": "塔罗牌",
"desc": "塔罗牌!魔法占卜🔮",
"author": "KafCoppelia",
"homepage": "https://github.com/KafCoppelia/nonebot_plugin_tarot",
"tags": [
{
"label": "a:onebot",
"color": "#eaa452"
},
{
"label": "t:tarot",
"color": "#461264"
}
],
"is_official": false
},
{
"module_name": "nonebot_plugin_emojimix",
"project_link": "nonebot-plugin-emojimix",
"name": "emoji 合成器",
"desc": "😎+😁=?",
"author": "MeetWq",
"homepage": "https://github.com/MeetWq/nonebot-plugin-emojimix",
"tags": [
{
"label": "t:emoji",
"color": "#ea5252"
}
],
"is_official": false
},
{
"module_name": "nonebot_plugin_what2eat",
"project_link": "nonebot-plugin-what2eat",
"name": "今天吃什么",
"desc": "选择恐惧症?让Bot决定你今天吃什么🍕",
"author": "KafCoppelia",
"homepage": "https://github.com/KafCoppelia/nonebot_plugin_what2eat",
"tags": [
{
"label": "a:onebot",
"color": "#cd3d3d"
},
{
"label": "t:what2eat",
"color": "#f09526"
}
],
"is_official": false
},
{
"module_name": "nonebot_plugin_datastore",
"project_link": "nonebot-plugin-datastore",
"name": "NoneBot 数据存储",
"desc": "提供简单的插件数据封装与数据库访问",
"author": "he0119",
"homepage": "https://github.com/he0119/nonebot-plugin-datastore",
"tags": [],
"is_official": false
},
{
"module_name": "nonebot_plugin_gocqhttp",
"project_link": "nonebot-plugin-gocqhttp",
"name": "NoneBot的go-cqhttp启动器",
"desc": "一款在NoneBot2中直接运行go-cqhttp的插件, 无需额外下载安装",
"author": "mnixry",
"homepage": "https://github.com/mnixry/nonebot-plugin-gocqhttp",
"tags": [
{
"label": "a:onebot",
"color": "#ea5252"
},
{
"label": "t:gocqhttp",
"color": "#eabd52"
}
],
"is_official": false
},
{
"module_name": "nonebot_plugin_guild_patch",
"project_link": "nonebot-plugin-guild-patch",
"name": "go-cqhttp 频道支持适配补丁",
"desc": "NoneBot2的QQ频道(go-cqhttp协议)支持适配补丁插件",
"author": "mnixry",
"homepage": "https://github.com/mnixry/nonebot-plugin-guild-patch",
"tags": [
{
"label": "a:onebot",
"color": "#ea5252"
},
{
"label": "t:gocqhttp",
"color": "#a2ea52"
}
],
"is_official": false
},
{
"module_name": "nonebot_plugin_chess",
"project_link": "nonebot-plugin-chess",
"name": "棋类游戏",
"desc": "棋类游戏插件,目前支持 五子棋、黑白棋、围棋",
"author": "MeetWq",
"homepage": "https://github.com/MeetWq/nonebot-plugin-chess",
"tags": [
{
"label": "t:chess",
"color": "#ea5252"
},
{
"label": "a:onebot",
"color": "#000000"
}
],
"is_official": false
},
{
"module_name": "nonebot_plugin_wordcloud",
"project_link": "nonebot-plugin-wordcloud",
"name": "词云",
"desc": "根据群内聊天记录生成词云",
"author": "he0119",
"homepage": "https://github.com/he0119/nonebot-plugin-wordcloud",
"tags": [],
"is_official": false
},
{
"module_name": "nonebot_plugin_chatrecorder",
"project_link": "nonebot-plugin-chatrecorder",
"name": "聊天记录插件",
"desc": "记录机器人收到和发出的消息",
"author": "MeetWq",