forked from wjf0214/qd-templates
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtpls_history.json
1505 lines (1505 loc) · 61.1 KB
/
tpls_history.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
{
"version":"20210916",
"har": {
"不移之火": {
"name": "不移之火",
"author": "wjf0214",
"url": "https://github.com/wjf0214/qd-templates/blob/master/不移之火.har",
"update": false,
"comments": "登录后首页cookie<br>https://www.byzhihuo.com/",
"filename": "不移之火.har",
"content": "",
"date": "2022-03-11 17:40:00",
"version": "20220311",
"commenturl":"https://github.com/wjf0214/qd-templates/discussions/3"
},
"element3ds": {
"name": "element3ds",
"author": "wjf0214",
"url": "https://github.com/wjf0214/qd-templates/blob/master/element3ds.har",
"update": false,
"comments": "登录后首页cookie<br>https://www.element3ds.com/",
"filename": "element3ds.har",
"content": "",
"date": "2022-03-11 17:40:00",
"version": "20220311",
"commenturl":"https://github.com/wjf0214/qd-templates/discussions/4"
},
"人人字幕组": {
"name": "人人字幕组",
"author": "wjf0214",
"url": "https://github.com/wjf0214/qd-templates/blob/master/人人字幕组.har",
"update": false,
"comments": "username:账号<br>password:密码<br>DOMAIN:网站域名【https://www.yysub.net/】",
"filename": "人人字幕组.har",
"content": "",
"date": "2022-02-10 23:35:00",
"version":"20220210",
"commenturl":"https://github.com/wjf0214/qd-templates/discussions/5"
},
"迅维网": {
"name": "迅维网",
"author": "wjf0214",
"url": "https://github.com/wjf0214/qd-templates/blob/master/迅维网.har",
"update": false,
"comments": "username:账号<br>password:密码<br>https://www.chinafix.com",
"filename": "迅维网.har",
"content": "",
"date": "2022-03-02 23:00:00",
"version":"20220302",
"commenturl":"https://github.com/wjf0214/qd-templates/discussions/6"
},
"科学刀论坛": {
"name": "科学刀论坛",
"author": "wjf0214",
"url": "https://github.com/wjf0214/qd-templates/blob/master/科学刀论坛.har",
"update": false,
"comments": "domain:为网站域名,如【https://www.kxdao.net/】,https和后面的'/'都要有<br>Cookie:登录后首页cookie<br>https://www.kxdao.net/",
"filename": "科学刀论坛.har",
"content": "",
"date": "2022-07-08 14:10:00",
"version":"20220708",
"commenturl":"https://github.com/wjf0214/qd-templates/discussions/7"
},
"科学刀在线时间": {
"name": "科学刀在线时间",
"author": "wjf0214",
"url": "https://github.com/wjf0214/qd-templates/blob/master/科学刀在线时间.har",
"update": false,
"comments": "domain:为网站域名,如【https://www.kxdao.net/】,https和后面的'/'都要有<br>Cookie:登录后首页cookie<br>https://www.kxdao.net/",
"filename": "科学刀在线时间.har",
"content": "",
"date": "2022-04-24 13:40:00",
"version":"20220424",
"commenturl":"https://github.com/wjf0214/qd-templates/discussions/8"
},
"chiphell": {
"name": "chiphell",
"author": "wjf0214",
"url": "https://github.com/wjf0214/qd-templates/blob/master/chiphell.har",
"update": false,
"comments": "登录后首页cookie<br>https://www.chiphell.com",
"filename": "chiphell.har",
"content": "",
"date": "2022-03-11 17:40:00",
"version": "20220311",
"commenturl":"https://github.com/wjf0214/qd-templates/discussions/9"
},
"卡饭": {
"name": "卡饭",
"author": "wjf0214",
"url": "https://github.com/wjf0214/qd-templates/blob/master/卡饭.har",
"update": false,
"comments": "username:账号<br>password:密码<br>https://bbs.kafan.cn/",
"filename": "卡饭.har",
"content": "",
"date": "2022-03-11 17:40:00",
"version": "20220311",
"commenturl":"https://github.com/wjf0214/qd-templates/discussions/10"
},
"卡饭(Cookie版)": {
"name": "卡饭(Cookie版)",
"author": "wjf0214",
"url": "https://github.com/wjf0214/qd-templates/blob/master/卡饭(Cookie版).har",
"update": false,
"comments": "登录后首页cookie<br>https://bbs.kafan.cn/",
"filename": "卡饭(Cookie版).har",
"content": "",
"date": "2022-04-29 10:10:00",
"version": "20220429",
"commenturl":"https://github.com/wjf0214/qd-templates/discussions/10"
},
"魅族社区": {
"name": "魅族社区",
"author": "wjf0214",
"url": "https://github.com/wjf0214/qd-templates/blob/master/魅族社区.har",
"update": false,
"comments": "登录后首页cookie<br>https://bbs.meizu.cn/",
"filename": "魅族社区.har",
"content": "",
"date": "2022-03-11 17:40:00",
"version": "20220311",
"commenturl":"https://github.com/wjf0214/qd-templates/discussions/11"
},
"杉果": {
"name": "杉果",
"author": "wjf0214",
"url": "https://github.com/wjf0214/qd-templates/blob/master/杉果.har",
"update": false,
"comments": "username:账号<br>password:密码<br>https://sonkwo.com/",
"filename": "杉果.har",
"content": "",
"date": "2022-03-11 17:40:00",
"version": "20220311",
"commenturl":"https://github.com/wjf0214/qd-templates/discussions/12"
},
"hao4k": {
"name": "hao4k",
"author": "wjf0214",
"url": "https://github.com/wjf0214/qd-templates/blob/master/hao4k.har",
"update": false,
"comments": "登录后首页cookie,f12的时候请选中复制,不要右键复制值。<br>https://www.hao4k.cn/",
"filename": "hao4k.har",
"content": "",
"date": "2022-06-21 22:20:00",
"version":"20220621",
"commenturl":"https://github.com/wjf0214/qd-templates/discussions/13"
},
"几鸡": {
"name": "几鸡",
"author": "wjf0214",
"url": "https://github.com/wjf0214/qd-templates/blob/master/几鸡.har",
"update": false,
"comments": "username:账号<br>password:密码<br>domain:网站域名",
"filename": "几鸡.har",
"content": "",
"date": "2022-03-11 17:40:00",
"version": "20220311",
"commenturl":"https://github.com/wjf0214/qd-templates/discussions/14"
},
"猫耳FM-每日鱼干": {
"name": "猫耳FM-每日鱼干",
"author": "wjf0214",
"url": "https://github.com/wjf0214/qd-templates/blob/master/猫耳FM-每日鱼干.har",
"update": false,
"comments": "登录后首页cookie<br>https://www.missevan.com",
"filename": "猫耳FM-每日鱼干.har",
"content": "",
"date": "2021-12-08 22:00:00",
"version":"20211208",
"commenturl":"https://github.com/wjf0214/qd-templates/discussions/15"
},
"什么值得买7合一": {
"name": "什么值得买7合一",
"author": "wjf0214",
"url": "https://github.com/wjf0214/qd-templates/blob/master/什么值得买7合一.har",
"update": false,
"comments": "登录后首页cookie<br>https://smzdm.com",
"filename": "什么值得买7合一.har",
"content": "",
"date": "2022-03-11 17:40:00",
"version": "20220311",
"commenturl":"https://github.com/wjf0214/qd-templates/discussions/16"
},
"龙的天空": {
"name": "龙的天空",
"author": "wjf0214",
"url": "https://github.com/wjf0214/qd-templates/blob/master/龙的天空.har",
"update": false,
"comments": "登录后首页cookie<br>https://www.lkong.com/",
"filename": "龙的天空.har",
"content": "",
"date": "2022-03-11 17:40:00",
"version": "20220311",
"commenturl":"https://github.com/wjf0214/qd-templates/discussions/17"
},
"网易云游戏": {
"name": "网易云游戏",
"author": "wjf0214",
"url": "https://github.com/wjf0214/qd-templates/blob/master/网易云游戏.har",
"update": false,
"comments": "登录后首页cookie<br>https://cg.163.com/",
"filename": "网易云游戏.har",
"content": "",
"date": "2021-09-18 10:00:00",
"version":"20210918",
"commenturl":"https://github.com/wjf0214/qd-templates/discussions/18"
},
"E次元": {
"name": "E次元",
"author": "wjf0214",
"url": "https://github.com/wjf0214/qd-templates/blob/master/E次元.har",
"update": false,
"comments": "domain:为网站域名,如【https://www.acge.me/】,https和后面的'/'都要有<br/>homeaction和cks 打开首页即可获取 https://www.acge.me/wp-admin/admin-ajax.php?action=<br>https://www.acge.me/",
"filename": "E次元.har",
"content": "",
"date": "2022-06-03 22:00:00",
"version": "20220603",
"commenturl":"https://github.com/wjf0214/qd-templates/discussions/19"
},
"致美化": {
"name": "致美化",
"author": "wjf0214",
"url": "https://github.com/wjf0214/qd-templates/blob/master/致美化.har",
"update": false,
"comments": "user:账号<br>pass:密码<br>https://zhutix.com",
"filename": "致美化.har",
"content": "",
"date": "2022-03-11 17:40:00",
"version": "20220311",
"commenturl":"https://github.com/wjf0214/qd-templates/discussions/20"
},
"时光相册": {
"name": "时光相册",
"author": "wjf0214",
"url": "https://github.com/wjf0214/qd-templates/blob/master/时光相册.har",
"update": false,
"comments": "phone:账号<br>password:密码<br>手机号密码 请抓登陆包查看 手机号里包括区号 86啥的 密码为加密后的密码<br>https://www.everphoto.cn/",
"filename": "时光相册.har",
"content": "",
"date": "2022-06-02 14:40:00",
"version": "20220602",
"commenturl":"https://github.com/wjf0214/qd-templates/discussions/21"
},
"书香门第": {
"name": "书香门第",
"author": "wjf0214",
"url": "https://github.com/wjf0214/qd-templates/blob/master/书香门第.har",
"update": false,
"comments": "account:账号<br>password:密码<br>登陆账号密码(只支持字母+数字组合账号)<br>http://www.txtnovel.top",
"filename": "书香门第.har",
"content": "",
"date": "2021-09-19 10:00:00",
"version":"20210919",
"commenturl":"https://github.com/wjf0214/qd-templates/discussions/22"
},
"漫画补档(账号密码版)": {
"name": "漫画补档(账号密码版)",
"author": "wjf0214",
"url": "https://github.com/wjf0214/qd-templates/blob/master/漫画补档(账号密码版).har",
"update": false,
"comments": "username:账号<br>password:密码<br>https://www.manhuabudang.com",
"filename": "漫画补档(账号密码版).har",
"content": "",
"date": "2022-03-11 17:40:00",
"version": "20220311",
"commenturl":"https://github.com/wjf0214/qd-templates/discussions/23"
},
"bigfun": {
"name": "bigfun",
"author": "wjf0214",
"url": "https://github.com/wjf0214/qd-templates/blob/master/bigfun.har",
"update": false,
"comments": "登录后首页cookie<br>https://www.bigfun.cn",
"filename": "bigfun.har",
"content": "",
"date": "2021-09-19 10:00:00",
"version":"20210919",
"commenturl":"https://github.com/wjf0214/qd-templates/discussions/24"
},
"hostloc主机论坛": {
"name": "hostloc主机论坛",
"author": "wjf0214",
"url": "https://github.com/wjf0214/qd-templates/blob/master/hostloc主机论坛.har",
"update": false,
"comments": "登录后首页cookie<br>https://hostloc.com",
"filename": "hostloc主机论坛.har",
"content": "",
"date": "2022-03-11 17:40:00",
"version": "20220311",
"commenturl":"https://github.com/wjf0214/qd-templates/discussions/25"
},
"south-plus": {
"name": "south-plus",
"author": "wjf0214",
"url": "https://github.com/wjf0214/qd-templates/blob/master/south-plus.har",
"update": false,
"comments": "登录后首页cookie和UA<br>domain:为网站域名,如【https://www.south-plus.net/】,https和后面的'/'都要有<br>https://www.south-plus.net",
"filename": "south-plus.har",
"content": "",
"date": "2022-03-11 17:40:00",
"version": "20220311",
"commenturl":"https://github.com/wjf0214/qd-templates/discussions/26"
},
"VCB-Studio分享论坛": {
"name": "VCB-Studio分享论坛",
"author": "wjf0214",
"url": "https://github.com/wjf0214/qd-templates/blob/master/VCB-Studio分享论坛.har",
"update": false,
"comments": "登录后首页cookie<br>https://bbs.acgrip.com",
"filename": "VCB-Studio分享论坛.har",
"content": "",
"date": "2022-03-11 17:40:00",
"version": "20220311",
"commenturl":"https://github.com/wjf0214/qd-templates/discussions/27"
},
"一酷C4D": {
"name": "一酷C4D",
"author": "wjf0214",
"url": "https://github.com/wjf0214/qd-templates/blob/master/一酷C4D.har",
"update": false,
"comments": "登录后首页cookie<br>https://c4dco.com",
"filename": "一酷C4D.har",
"content": "",
"date": "2022-03-11 17:40:00",
"version": "20220311",
"commenturl":"https://github.com/wjf0214/qd-templates/discussions/28"
},
"SolidWorks机械工程师网": {
"name": "SolidWorks机械工程师网",
"author": "wjf0214",
"url": "https://github.com/wjf0214/qd-templates/blob/master/SolidWorks机械工程师网.har",
"update": false,
"comments": "username:账号<br>password:密码<br>https://www.swbbsc.com/",
"filename": "SolidWorks机械工程师网.har",
"content": "",
"date": "2022-03-11 17:40:00",
"version": "20220311",
"commenturl":"https://github.com/wjf0214/qd-templates/discussions/29"
},
"HDarea高清视界": {
"name": "HDarea高清视界",
"author": "wjf0214",
"url": "https://github.com/wjf0214/qd-templates/blob/master/HDarea高清视界.har",
"update": false,
"comments": "登录后首页cookie<br>https://www.hdarea.co/",
"filename": "HDarea高清视界.har",
"content": "",
"date": "2021-09-20 10:00:00",
"version":"20210920",
"commenturl":"https://github.com/wjf0214/qd-templates/discussions/30"
},
"经管之家": {
"name": "经管之家",
"author": "wjf0214",
"url": "https://github.com/wjf0214/qd-templates/blob/master/经管之家.har",
"update": false,
"comments": "登录后首页cookie<br>https://bbs.pinggu.org/",
"filename": "经管之家.har",
"content": "",
"date": "2022-03-11 17:40:00",
"version": "20220311",
"commenturl":"https://github.com/wjf0214/qd-templates/discussions/31"
},
"香网小说": {
"name": "香网小说",
"author": "wjf0214",
"url": "https://github.com/wjf0214/qd-templates/blob/master/香网小说.har",
"update": false,
"comments": "登录后首页cookie<br>https://m.xiang5.com/",
"filename": "香网小说.har",
"content": "",
"date": "2022-03-11 17:40:00",
"version": "20220311",
"commenturl":"https://github.com/wjf0214/qd-templates/discussions/32"
},
"精易论坛": {
"name": "精易论坛",
"author": "wjf0214",
"url": "https://github.com/wjf0214/qd-templates/blob/master/精易论坛.har",
"update": false,
"comments": "登录后首页cookie<br>https://bbs.125.la/",
"filename": "精易论坛.har",
"content": "",
"date": "2022-03-11 17:40:00",
"version": "20220311",
"commenturl":"https://github.com/wjf0214/qd-templates/discussions/33"
},
"晋江小说": {
"name": "晋江小说",
"author": "wjf0214",
"url": "https://github.com/wjf0214/qd-templates/blob/master/晋江小说.har",
"update": false,
"comments": "登录后首页cookie<br>https://m.jjwxc.net/",
"filename": "晋江小说.har",
"content": "",
"date": "2022-03-11 17:40:00",
"version": "20220311",
"commenturl":"https://github.com/wjf0214/qd-templates/discussions/34"
},
"看雪安全论坛": {
"name": "看雪安全论坛",
"author": "wjf0214",
"url": "https://github.com/wjf0214/qd-templates/blob/master/看雪安全论坛.har",
"update": false,
"comments": "登录后首页cookie<br>https://bbs.pediy.com/",
"filename": "看雪安全论坛.har",
"content": "",
"date": "2022-03-11 17:40:00",
"version": "20220311",
"commenturl":"https://github.com/wjf0214/qd-templates/discussions/35"
},
"粤梦缘": {
"name": "粤梦缘",
"author": "wjf0214",
"url": "https://github.com/wjf0214/qd-templates/blob/master/粤梦缘.har",
"update": false,
"comments": "username:账号<br>password:密码<br>https://www.dranime.net/",
"filename": "粤梦缘.har",
"content": "",
"date": "2021-09-28 23:00:00",
"version":"20210928",
"commenturl":"https://github.com/wjf0214/qd-templates/discussions/36"
},
"人人素材": {
"name": "人人素材",
"author": "wjf0214",
"url": "https://github.com/wjf0214/qd-templates/blob/master/人人素材.har",
"update": false,
"comments": "username:账号,手机号<br>password:密码<br>https://www.rrcg.cn/",
"filename": "人人素材.har",
"content": "",
"date": "2022-03-11 17:40:00",
"version": "20220311",
"commenturl":"https://github.com/wjf0214/qd-templates/discussions/37"
},
"幕后Muhou": {
"name": "幕后Muhou",
"author": "wjf0214",
"url": "https://github.com/wjf0214/qd-templates/blob/master/幕后Muhou.har",
"update": false,
"comments": "username:账号<br>password:密码<br>https://muhou.net/",
"filename": "幕后Muhou.har",
"content": "",
"date": "2022-03-11 17:40:00",
"version": "20220311",
"commenturl":"https://github.com/wjf0214/qd-templates/discussions/38"
},
"飞客茶馆": {
"name": "飞客茶馆",
"author": "wjf0214",
"url": "https://github.com/wjf0214/qd-templates/blob/master/飞客茶馆.har",
"update": false,
"comments": "username:账号,手机号<br>password:密码<br>https://www.flyert.com/<br>由于网站登录授权特殊,授权次数不固定。请求暂定3次,超过3次。可能登录不成功。多试几次便可",
"filename": "飞客茶馆.har",
"content": "",
"date": "2022-03-11 17:40:00",
"version": "20220311",
"commenturl":"https://github.com/wjf0214/qd-templates/discussions/39"
},
"萌幻之乡": {
"name": "萌幻之乡",
"author": "wjf0214",
"url": "https://github.com/wjf0214/qd-templates/blob/master/萌幻之乡.har",
"update": false,
"comments": "username:账号<br>password:密码<br>https://www.hmoe11.net/",
"filename": "萌幻之乡.har",
"content": "",
"date": "2022-06-13 13:40:00",
"version": "20220613",
"commenturl":"https://github.com/wjf0214/qd-templates/discussions/40"
},
"v2ex": {
"name": "v2ex",
"author": "wjf0214",
"url": "https://github.com/wjf0214/qd-templates/blob/master/v2ex.har",
"update": false,
"comments": "登录后首页cookie<br>https://www.v2ex.com/",
"filename": "v2ex.har",
"content": "",
"date": "2021-09-30 00:00:00",
"version":"20210930",
"commenturl":"https://github.com/wjf0214/qd-templates/discussions/41"
},
"好家伙机场": {
"name": "好家伙机场",
"author": "wjf0214",
"url": "https://github.com/wjf0214/qd-templates/blob/master/好家伙机场.har",
"update": false,
"comments": "email:邮箱<br>passwd:密码<br>https://haojiahuo.live/",
"filename": "好家伙机场.har",
"content": "",
"date": "2022-03-11 17:40:00",
"version": "20220311",
"commenturl":"https://github.com/wjf0214/qd-templates/discussions/42"
},
"后期菌资源村": {
"name": "后期菌资源村",
"author": "wjf0214",
"url": "https://github.com/wjf0214/qd-templates/blob/master/后期菌资源村.har",
"update": false,
"comments": "username:手机号<br>password:密码<br>http://www.houqijun.vip/",
"filename": "后期菌资源村.har",
"content": "",
"date": "2022-03-11 17:40:00",
"version": "20220311",
"commenturl":"https://github.com/wjf0214/qd-templates/discussions/43"
},
"中国原创音乐基地5SING": {
"name": "中国原创音乐基地5SING",
"author": "wjf0214",
"url": "https://github.com/wjf0214/qd-templates/blob/master/中国原创音乐基地5SING.har",
"update": false,
"comments": "登录后首页cookie,ck有效期一周<br>http://5sing.kugou.com/",
"filename": "中国原创音乐基地5SING.har",
"content": "",
"date": "2021-10-06 17:40:00",
"version":"20211006",
"commenturl":"https://github.com/wjf0214/qd-templates/discussions/44"
},
"91tvg主机玩家的营地": {
"name": "91tvg主机玩家的营地",
"author": "wjf0214",
"url": "https://github.com/wjf0214/qd-templates/blob/master/91tvg主机玩家的营地.har",
"update": false,
"comments": "登录后首页cookie<br>https://www.91tvg.com/",
"filename": "91tvg主机玩家的营地.har",
"content": "",
"date": "2022-03-11 17:40:00",
"version": "20220311",
"commenturl":"https://github.com/wjf0214/qd-templates/discussions/45"
},
"189天翼云(账号密码版)": {
"name": "189天翼云(账号密码版)",
"author": "wjf0214",
"url": "https://github.com/wjf0214/qd-templates/blob/master/189天翼云(账号密码版).har",
"update": false,
"comments": "username:账号<br>password:密码<br>https://cloud.189.cn/",
"filename": "189天翼云(账号密码版).har",
"content": "",
"date": "2022-03-11 17:40:00",
"version": "20220311",
"commenturl":"https://github.com/wjf0214/qd-templates/discussions/46"
},
"绅士领域": {
"name": "绅士领域",
"author": "wjf0214",
"url": "https://github.com/wjf0214/qd-templates/blob/master/绅士领域.har",
"update": false,
"comments": "uid:个人uid可APP抓签到包看到",
"filename": "绅士领域.har",
"content": "",
"date": "2021-11-19 10:30:00",
"version":"20211119",
"commenturl":"https://github.com/wjf0214/qd-templates/discussions/47"
},
"手电大家谈": {
"name": "手电大家谈",
"author": "wjf0214",
"url": "https://github.com/wjf0214/qd-templates/blob/master/手电大家谈.har",
"update": false,
"comments": "username:账号<br>password:密码<br>https://www.shoudian.org/",
"filename": "手电大家谈.har",
"content": "",
"date": "2022-03-11 17:40:00",
"version": "20220311",
"commenturl":"https://github.com/wjf0214/qd-templates/discussions/48"
},
"次元狗": {
"name": "次元狗",
"author": "wjf0214",
"url": "https://github.com/wjf0214/qd-templates/blob/master/次元狗.har",
"update": false,
"comments": "登录后首页cookie<br>https://www.acgndog.com/",
"filename": "次元狗.har",
"content": "",
"date": "2021-11-09 00:00:00",
"version":"20211109",
"commenturl":"https://github.com/wjf0214/qd-templates/discussions/49"
},
"阅次元论坛": {
"name": "阅次元论坛",
"author": "wjf0214",
"url": "https://github.com/wjf0214/qd-templates/blob/master/阅次元论坛.har",
"update": false,
"comments": "登录后首页cookie<br>https://www.abooky.com/",
"filename": "阅次元论坛.har",
"content": "",
"date": "2022-03-11 17:40:00",
"version": "20220311",
"commenturl":"https://github.com/wjf0214/qd-templates/discussions/50"
},
"科技玩家": {
"name": "科技玩家",
"author": "wjf0214",
"url": "https://github.com/wjf0214/qd-templates/blob/master/科技玩家.har",
"update": false,
"comments": "username:账号<br>password:密码<br>https://www.kejiwanjia.com/",
"filename": "科技玩家.har",
"content": "",
"date": "2022-03-11 17:40:00",
"version": "20220311",
"commenturl":"https://github.com/wjf0214/qd-templates/discussions/51"
},
"QooApp": {
"name": "科技玩家",
"author": "wjf0214",
"url": "https://github.com/wjf0214/qd-templates/blob/master/QooApp.har",
"update": false,
"comments": "token:下载App抓包cookie,找到请求头部 x-user-token 的值",
"filename": "QooApp.har",
"content": "",
"date": "2022-03-11 17:40:00",
"version": "20220311",
"commenturl":"https://github.com/wjf0214/qd-templates/discussions/52"
},
"KDays论坛": {
"name": "KDays论坛",
"author": "wjf0214",
"url": "https://github.com/wjf0214/qd-templates/blob/master/KDays论坛.har",
"update": false,
"comments": "username:账号<br>password:密码<br>https://uc.kdays.net/",
"filename": "KDays论坛.har",
"content": "",
"date": "2022-03-25 17:30:00",
"version": "20220325",
"commenturl":"https://github.com/wjf0214/qd-templates/discussions/53"
},
"HiFiNi": {
"name": "HiFiNi",
"author": "wjf0214",
"url": "https://github.com/wjf0214/qd-templates/blob/master/HiFiNi.har",
"update": false,
"comments": "登录后首页cookie<br>https://www.hifini.com/",
"filename": "HiFiNi.har",
"content": "",
"date": "2021-11-12 10:00:00",
"version":"20211112",
"commenturl":"https://github.com/wjf0214/qd-templates/discussions/54"
},
"一加社区": {
"name": "一加社区",
"author": "wjf0214",
"url": "https://github.com/wjf0214/qd-templates/blob/master/一加社区.har",
"update": false,
"comments": "登录后首页cookie<br>https://www.oneplusbbs.com/",
"filename": "一加社区.har",
"content": "",
"date": "2022-03-11 17:40:00",
"version": "20220311",
"commenturl":"https://github.com/wjf0214/qd-templates/discussions/55"
},
"吾爱破解": {
"name": "吾爱破解",
"author": "wjf0214",
"url": "https://github.com/wjf0214/qd-templates/blob/master/吾爱破解.har",
"update": false,
"comments": "登录后首页cookie,f12的时候请选中复制,不要右键复制值。<br>https://www.52pojie.cn/",
"filename": "吾爱破解.har",
"content": "",
"date": "2022-06-21 22:10:00",
"version": "20220621",
"commenturl":"https://github.com/wjf0214/qd-templates/discussions/56"
},
"MZFastCloud": {
"name": "MZFastCloud",
"author": "wjf0214",
"url": "https://github.com/wjf0214/qd-templates/blob/master/MZFastCloud.har",
"update": false,
"comments": "username:账号<br>password:密码<br>https://www.mzfast.xyz/",
"filename": "MZFastCloud.har",
"content": "",
"date": "2022-03-11 17:40:00",
"version": "20220311",
"commenturl":"https://github.com/wjf0214/qd-templates/discussions/57"
},
"Fa米家": {
"name": "Fa米家",
"author": "wjf0214",
"url": "https://github.com/wjf0214/qd-templates/blob/master/Fa米家.har",
"update": false,
"comments": "抓包 APP 的请求中的 headers 信息,提取 token、deviceId、blackBox 即可,fmVersion,os,User-Agent等参数可以根据自身情况自行更改模板。<br>应用单点登录限制,换设备登录后,之前登录状态参数失效",
"filename": "Fa米家.har",
"content": "",
"date": "2022-03-11 17:40:00",
"version": "20220311",
"commenturl":"https://github.com/wjf0214/qd-templates/discussions/58"
},
"王者营地": {
"name": "王者营地",
"author": "wjf0214",
"url": "https://github.com/wjf0214/qd-templates/blob/master/王者营地.har",
"update": false,
"comments": "抓包 APP 中域名为 https://ssl.kohsocialapp.qq.com 请求内容的全部参数<br>APP自行商店下载",
"filename": "王者营地.har",
"content": "",
"date": "2022-03-02 21:00:00",
"version":"20220302",
"commenturl":"https://github.com/wjf0214/qd-templates/discussions/59"
},
"ZNDS智能电视网": {
"name": "ZNDS智能电视网",
"author": "wjf0214",
"url": "https://github.com/wjf0214/qd-templates/blob/master/ZNDS智能电视网.har",
"update": false,
"comments": "username:账号<br>password:密码<br>https://www.znds.com/",
"filename": "ZNDS智能电视网.har",
"content": "",
"date": "2022-03-11 17:40:00",
"version": "20220311",
"commenturl":"https://github.com/wjf0214/qd-templates/discussions/60"
},
"花火学园": {
"name": "花火学园",
"author": "wjf0214",
"url": "https://github.com/wjf0214/qd-templates/blob/master/花火学园.har",
"update": false,
"comments": "username:账号<br>password:密码<br>https://www.sayhuahuo.com/",
"filename": "花火学园.har",
"content": "",
"date": "2022-03-02 21:00:00",
"version":"20220302",
"commenturl":"https://github.com/wjf0214/qd-templates/discussions/61"
},
"轻之文库": {
"name": "轻之文库",
"author": "wjf0214",
"url": "https://github.com/wjf0214/qd-templates/blob/master/轻之文库.har",
"update": false,
"comments": "username:账号<br>password:密码<br>https://www.linovel.net/",
"filename": "轻之文库.har",
"content": "",
"date": "2022-03-11 17:40:00",
"version": "20220311",
"commenturl":"https://github.com/wjf0214/qd-templates/discussions/62"
},
"中国汉化论坛": {
"name": "中国汉化论坛",
"author": "wjf0214",
"url": "https://github.com/wjf0214/qd-templates/blob/master/中国汉化论坛.har",
"update": false,
"comments": "username:账号<br>password:密码<br>questionId对应值:<br>-1.自定义问题<br>1.我爸爸的出生地<br>2.我妈妈的出生地<br>3.我的小学校名<br>4.我的中学校名<br>5.我最喜欢的运动<br>6.我最喜欢的歌曲<br>7.我最喜欢的电影<br>8.我最喜欢的颜色<br>customquest:自定义问题<br>answer:问题答案<br>没有密保安全问题,questionId,customquest,answer不填为空。<br>http://h.shanse8.com/",
"filename": "中国汉化论坛.har",
"content": "",
"date": "2022-03-11 17:40:00",
"version": "20220311",
"commenturl":"https://github.com/wjf0214/qd-templates/discussions/63"
},
"吾爱汇编": {
"name": "吾爱汇编",
"author": "wjf0214",
"url": "https://github.com/wjf0214/qd-templates/blob/master/吾爱汇编.har",
"update": false,
"comments": "登录后首页cookie<br>https://www.52hb.com/",
"filename": "吾爱汇编.har",
"content": "",
"date": "2022-03-11 17:40:00",
"version": "20220311",
"commenturl":"https://github.com/wjf0214/qd-templates/discussions/65"
},
"爱玩网络": {
"name": "爱玩网络",
"author": "wjf0214",
"url": "https://github.com/wjf0214/qd-templates/blob/master/爱玩网络.har",
"update": false,
"comments": "username:账号<br>password:密码<br>https://wngamebox.cn/",
"filename": "爱玩网络.har",
"content": "",
"date": "2022-03-11 17:40:00",
"version": "20220311",
"commenturl":"https://github.com/wjf0214/qd-templates/discussions/66"
},
"switch520": {
"name": "switch520",
"author": "wjf0214",
"url": "https://github.com/wjf0214/qd-templates/blob/master/switch520.har",
"update": false,
"comments": "username:账号<br>password:密码<br>https://switch520.com/",
"filename": "switch520.har",
"content": "",
"date": "2022-03-11 17:40:00",
"version": "20220311",
"commenturl":"https://github.com/wjf0214/qd-templates/discussions/67"
},
"远景论坛(账号版)": {
"name": "远景论坛(账号版)",
"author": "wjf0214",
"url": "https://github.com/wjf0214/qd-templates/blob/master/远景论坛(账号版).har",
"update": false,
"comments": "username:账号<br>password:密码<br>https://bbs.pcbeta.com/",
"filename": "远景论坛(账号版).har",
"content": "",
"date": "2022-03-11 17:40:00",
"version": "20220311",
"commenturl":"https://github.com/wjf0214/qd-templates/discussions/68"
},
"联想智选": {
"name": "联想智选",
"author": "wjf0214",
"url": "https://github.com/wjf0214/qd-templates/blob/master/联想智选.har",
"update": false,
"comments": "username:账号<br>password:密码<br>baseinfo:APP抓包 api.club.lenovo.cn 域名下的任意请求,header里面去找。可以为空,有默认值。但推荐抓取。",
"filename": "联想智选.har",
"content": "",
"date": "2022-03-11 17:40:00",
"version": "20220311",
"commenturl":"https://github.com/wjf0214/qd-templates/discussions/69"
},
"小米运动": {
"name": "小米运动",
"author": "wjf0214",
"url": "https://github.com/wjf0214/qd-templates/blob/master/小米运动.har",
"update": false,
"comments": "username:账号<br>password:密码<br>min_step:最小步数<br>max_step:最大步数<br>步数在最大最小值之间取值,不填默认为1w到2w之间随机",
"filename": "小米运动.har",
"content": "",
"date": "2022-03-11 17:40:00",
"version": "20220311",
"commenturl":"https://github.com/wjf0214/qd-templates/discussions/70"
},
"阡陌居": {
"name": "阡陌居",
"author": "wjf0214",
"url": "https://github.com/wjf0214/qd-templates/blob/master/阡陌居.har",
"update": false,
"comments": "登录后首页cookie<br>http://www.1000qm.vip/",
"filename": "阡陌居.har",
"content": "",
"date": "2022-03-11 17:40:00",
"version": "20220311",
"commenturl":"https://github.com/wjf0214/qd-templates/discussions/71"
},
"魔兽大数据": {
"name": "魔兽大数据",
"author": "wjf0214",
"url": "https://github.com/wjf0214/qd-templates/blob/master/魔兽大数据.har",
"update": false,
"comments": "登录后首页cookie<br>content:世界频道发言的内容<br>http://bj.wowdata.top/",
"filename": "魔兽大数据.har",
"content": "",
"date": "2022-03-11 17:40:00",
"version": "20220311",
"commenturl":"https://github.com/wjf0214/qd-templates/discussions/72"
},
"万由论坛": {
"name": "万由论坛",
"author": "wjf0214",
"url": "https://github.com/wjf0214/qd-templates/blob/master/万由论坛.har",
"update": false,
"comments": "username:手机号<br>password:密码<br>https://www.u-share.cn/forum.php",
"filename": "万由论坛.har",
"content": "",
"date": "2022-03-11 17:40:00",
"version": "20220311",
"commenturl":"https://github.com/wjf0214/qd-templates/discussions/73"
},
"龙de船人": {
"name": "龙de船人",
"author": "wjf0214",
"url": "https://github.com/wjf0214/qd-templates/blob/master/龙de船人.har",
"update": false,
"comments": "登录后首页cookie<br>https://www.imarine.cn/",
"filename": "龙de船人.har",
"content": "",
"date": "2022-03-31 13:45:00",
"version": "20220331",
"commenturl":"https://github.com/wjf0214/qd-templates/discussions/74"
},
"新赚吧": {
"name": "新赚吧",
"author": "wjf0214",
"url": "https://github.com/wjf0214/qd-templates/blob/master/新赚吧.har",
"update": false,
"comments": "username:账号<br>password:密码<br>https://v1.xianbao.net/",
"filename": "新赚吧.har",
"content": "",
"date": "2022-03-11 17:40:00",
"version": "20220311",
"commenturl":"https://github.com/wjf0214/qd-templates/discussions/75"
},
"SSPANEL机场通用签到": {
"name": "SSPANEL机场通用签到",
"author": "wjf0214",
"url": "https://github.com/wjf0214/qd-templates/blob/master/SSPANEL机场通用签到.har",
"update": false,
"comments": "domain:域名,如【https://xxx.com】,后面不带'/'<br>username:账号<br>password:密码",
"filename": "SSPANEL机场通用签到.har",
"content": "",
"date": "2022-03-11 17:40:00",
"version": "20220311",
"commenturl":"https://github.com/wjf0214/qd-templates/discussions/76"
},
"萌盘总动员": {
"name": "萌盘总动员",
"author": "wjf0214",
"url": "https://github.com/wjf0214/qd-templates/blob/master/萌盘总动员.har",
"update": false,
"comments": "username:账号<br>password:密码<br>http://bdarea.net/",
"filename": "萌盘总动员.har",
"content": "",
"date": "2021-12-30 14:00:00",
"version": "20211230",
"commenturl":"https://github.com/wjf0214/qd-templates/discussions/77"
},
"98堂": {
"name": "98堂",
"author": "wjf0214",
"url": "https://github.com/wjf0214/qd-templates/blob/master/98堂.har",
"update": false,
"comments": "username:账号<br>password:密码<br>https://wetytrytuyu.net/",
"filename": "98堂.har",
"content": "",
"date": "2021-12-31 15:00:00",
"version": "20211231",
"commenturl":"https://github.com/wjf0214/qd-templates/discussions/78"
},
"学犀牛中文网": {
"name": "学犀牛中文网",
"author": "wjf0214",
"url": "https://github.com/wjf0214/qd-templates/blob/master/学犀牛中文网.har",
"update": false,
"comments": "登录后首页cookie,不要右键复制值,请选中后复制<br>https://www.xuexiniu.com/",
"filename": "学犀牛中文网.har",
"content": "",
"date": "2021-12-31 15:00:00",
"version": "20211231",
"commenturl":"https://github.com/wjf0214/qd-templates/discussions/79"
},
"大碗岛漫画": {
"name": "大碗岛漫画",
"author": "wjf0214",
"url": "https://github.com/wjf0214/qd-templates/blob/master/大碗岛漫画.har",
"update": false,
"comments": "username:账号<br>password:密码<br>http://www.dawandao.com/",
"filename": "大碗岛漫画.har",
"content": "",
"date": "2022-03-11 17:40:00",
"version": "20220311",
"commenturl":"https://github.com/wjf0214/qd-templates/discussions/80"
},
"捌零发烧音乐网": {
"name": "捌零发烧音乐网",
"author": "wjf0214",
"url": "https://github.com/wjf0214/qd-templates/blob/master/捌零发烧音乐网.har",
"update": false,
"comments": "登录后首页cookie<br>https://hifi.juyincar.com/",
"filename": "捌零发烧音乐网.har",
"content": "",
"date": "2022-01-03 10:00:00",
"version": "20220103",
"commenturl":"https://github.com/wjf0214/qd-templates/discussions/81"
},
"武聆音雄配乐网": {
"name": "武聆音雄配乐网",
"author": "wjf0214",
"url": "https://github.com/wjf0214/qd-templates/blob/master/武聆音雄配乐网.har",
"update": false,
"comments": "username:账号<br>password:密码<br>message:签到回复帖子的语句,默认为'每日签到~'<br>https://www.wlyxmusic.net/",
"filename": "武聆音雄配乐网.har",
"content": "",
"date": "2022-01-03 10:00:00",
"version": "20220103",
"commenturl":"https://github.com/wjf0214/qd-templates/discussions/82"
},
"56brand我来网": {
"name": "56brand我来网",
"author": "wjf0214",
"url": "https://github.com/wjf0214/qd-templates/blob/master/56brand我来网.har",
"update": false,
"comments": "username:账号<br>password:密码<br>http://www.56brand.com/",
"filename": "56brand我来网.har",
"content": "",
"date": "2022-03-11 17:40:00",
"version": "20220311",
"commenturl":"https://github.com/wjf0214/qd-templates/discussions/84"
},
"野火论坛": {
"name": "野火论坛",
"author": "wjf0214",
"url": "https://github.com/wjf0214/qd-templates/blob/master/野火论坛.har",
"update": false,
"comments": "username:账号<br>password:密码<br>http://www.proewildfire.cn/",
"filename": "野火论坛.har",
"content": "",
"date": "2022-01-07 10:00:00",
"version": "20220107",
"commenturl":"https://github.com/wjf0214/qd-templates/discussions/85"
},
"3D溜溜网": {
"name": "3D溜溜网",
"author": "wjf0214",
"url": "https://github.com/wjf0214/qd-templates/blob/master/3D溜溜网.har",
"update": false,
"comments": "登录后首页cookie<br>https://user.3d66.com/",
"filename": "3D溜溜网.har",
"content": "",
"date": "2022-05-30 15:30:00",
"version": "20220530",
"commenturl":"https://github.com/wjf0214/qd-templates/discussions/86"
},
"宽带技术网": {