-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
2319 lines (2319 loc) · 139 KB
/
Copy pathindex.html
File metadata and controls
2319 lines (2319 loc) · 139 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
{
"name": "OwO Source",
"identifier": "network.owo.repo",
"sourceURL": "https://repo.owo.network",
"iconURL": "https://raw.githubusercontent.com/OwO-Network/Repo/main/icons/owo.repo.icon.png",
"sourceicon": "https://raw.githubusercontent.com/OwO-Network/Repo/main/icons/owo.repo.icon.png",
"website": "https://owo.network",
"subtitle": "Biggest Updated Modified IPA Library for Sideloading - OwO.Network",
"META": {
"repoName": "OwO Source",
"repoIcon": "https://raw.githubusercontent.com/OwO-Network/Repo/main/icons/owo.repo.icon.png"
},
"apps": [
{
"name": "PiliPlus",
"realBundleID": "com.example.piliplus",
"bundleID": "com.example.piliplus",
"bundleIdentifier": "com.example.piliplus",
"version": "2.1.0",
"versionDate": "2026-07-12",
"fullDate": "20260712082122",
"size": 23440601,
"down": "https://github.com/OwO-Network/Repo/releases/download/PiliPlus_2.1.0/PiliPlus_2.1.0_Nothing_%40repo.owo.network.ipa",
"downloadURL": "https://github.com/OwO-Network/Repo/releases/download/PiliPlus_2.1.0/PiliPlus_2.1.0_Nothing_%40repo.owo.network.ipa",
"developerName": "",
"localizedDescription": "Injected with Nothing",
"icon": "https://raw.githubusercontent.com/owo-network/Repo/main/icons/com.example.piliplus.png",
"iconURL": "https://raw.githubusercontent.com/owo-network/Repo/main/icons/com.example.piliplus.png"
},
{
"name": "Feather",
"realBundleID": "kh.crysalis.feather",
"bundleID": "kh.crysalis.feather",
"bundleIdentifier": "kh.crysalis.feather",
"version": "2.9.0",
"versionDate": "2026-07-05",
"fullDate": "20260705033921",
"size": 14241853,
"down": "https://github.com/OwO-Network/Repo/releases/download/Feather_2.9.0/Feather_2.9.0_Nothing_%40repo.owo.network.ipa",
"downloadURL": "https://github.com/OwO-Network/Repo/releases/download/Feather_2.9.0/Feather_2.9.0_Nothing_%40repo.owo.network.ipa",
"developerName": "",
"localizedDescription": "Injected with Nothing",
"icon": "https://raw.githubusercontent.com/owo-network/Repo/main/icons/kh.crysalis.feather.png",
"iconURL": "https://raw.githubusercontent.com/owo-network/Repo/main/icons/kh.crysalis.feather.png"
},
{
"name": "Aidoku",
"realBundleID": "app.aidoku.Aidoku",
"bundleID": "app.aidoku.Aidoku",
"bundleIdentifier": "app.aidoku.Aidoku",
"version": "0.8.4",
"versionDate": "2026-07-03",
"fullDate": "20260703092201",
"size": 10136987,
"down": "https://github.com/OwO-Network/Repo/releases/download/Aidoku_0.8.4/Aidoku_0.8.4_Nothing_%40repo.owo.network.ipa",
"downloadURL": "https://github.com/OwO-Network/Repo/releases/download/Aidoku_0.8.4/Aidoku_0.8.4_Nothing_%40repo.owo.network.ipa",
"developerName": "",
"localizedDescription": "Injected with Nothing",
"icon": "https://raw.githubusercontent.com/owo-network/Repo/main/icons/app.aidoku.Aidoku.png",
"iconURL": "https://raw.githubusercontent.com/owo-network/Repo/main/icons/app.aidoku.Aidoku.png"
},
{
"name": "JavDB",
"realBundleID": "com.javdb.com",
"bundleID": "com.javdb.com",
"bundleIdentifier": "com.javdb.com",
"version": "1.9.29",
"versionDate": "2026-06-27",
"fullDate": "20260627063814",
"size": 24785348,
"down": "https://github.com/OwO-Network/Repo/releases/download/JavDB_1.9.29/JavDB_1.9.29_Nothing_%40repo.owo.network.ipa",
"downloadURL": "https://github.com/OwO-Network/Repo/releases/download/JavDB_1.9.29/JavDB_1.9.29_Nothing_%40repo.owo.network.ipa",
"developerName": "",
"localizedDescription": "Injected with Nothing",
"icon": "https://raw.githubusercontent.com/owo-network/Repo/main/icons/com.javdb.com.png",
"iconURL": "https://raw.githubusercontent.com/owo-network/Repo/main/icons/com.javdb.com.png"
},
{
"name": "Feather",
"realBundleID": "kh.crysalis.feather",
"bundleID": "kh.crysalis.feather",
"bundleIdentifier": "kh.crysalis.feather",
"version": "2.8.2",
"versionDate": "2026-06-27",
"fullDate": "20260627063016",
"size": 14242031,
"down": "https://github.com/OwO-Network/Repo/releases/download/Feather_2.8.2/Feather_2.8.2_Nothing_%40repo.owo.network.ipa",
"downloadURL": "https://github.com/OwO-Network/Repo/releases/download/Feather_2.8.2/Feather_2.8.2_Nothing_%40repo.owo.network.ipa",
"developerName": "",
"localizedDescription": "Injected with Nothing",
"icon": "https://raw.githubusercontent.com/owo-network/Repo/main/icons/kh.crysalis.feather.png",
"iconURL": "https://raw.githubusercontent.com/owo-network/Repo/main/icons/kh.crysalis.feather.png"
},
{
"name": "Aidoku",
"realBundleID": "app.aidoku.Aidoku",
"bundleID": "app.aidoku.Aidoku",
"bundleIdentifier": "app.aidoku.Aidoku",
"version": "0.8.3",
"versionDate": "2026-06-27",
"fullDate": "20260627062528",
"size": 9287296,
"down": "https://github.com/OwO-Network/Repo/releases/download/Aidoku_0.8.3/Aidoku_0.8.3_Nothing_%40repo.owo.network.ipa",
"downloadURL": "https://github.com/OwO-Network/Repo/releases/download/Aidoku_0.8.3/Aidoku_0.8.3_Nothing_%40repo.owo.network.ipa",
"developerName": "",
"localizedDescription": "Injected with Nothing",
"icon": "https://raw.githubusercontent.com/owo-network/Repo/main/icons/app.aidoku.Aidoku.png",
"iconURL": "https://raw.githubusercontent.com/owo-network/Repo/main/icons/app.aidoku.Aidoku.png"
},
{
"name": "PiliPlus",
"realBundleID": "com.example.piliplus",
"bundleID": "com.example.piliplus",
"bundleIdentifier": "com.example.piliplus",
"version": "2.0.9.2",
"versionDate": "2026-06-13",
"fullDate": "20260613140447",
"size": 23393835,
"down": "https://github.com/OwO-Network/Repo/releases/download/PiliPlus_2.0.9.2/PiliPlus_2.0.9.2_Nothing_%40repo.owo.network.ipa",
"downloadURL": "https://github.com/OwO-Network/Repo/releases/download/PiliPlus_2.0.9.2/PiliPlus_2.0.9.2_Nothing_%40repo.owo.network.ipa",
"developerName": "",
"localizedDescription": "Injected with Nothing",
"icon": "https://raw.githubusercontent.com/owo-network/Repo/main/icons/com.example.piliplus.png",
"iconURL": "https://raw.githubusercontent.com/owo-network/Repo/main/icons/com.example.piliplus.png"
},
{
"name": "PiliPlus",
"realBundleID": "com.example.piliplus",
"bundleID": "com.example.piliplus",
"bundleIdentifier": "com.example.piliplus",
"version": "2.0.9.1",
"versionDate": "2026-06-12",
"fullDate": "20260612101758",
"size": 23386570,
"down": "https://github.com/OwO-Network/Repo/releases/download/PiliPlus_2.0.9.1/PiliPlus_2.0.9.1_Nothing_%40repo.owo.network.ipa",
"downloadURL": "https://github.com/OwO-Network/Repo/releases/download/PiliPlus_2.0.9.1/PiliPlus_2.0.9.1_Nothing_%40repo.owo.network.ipa",
"developerName": "",
"localizedDescription": "Injected with Nothing",
"icon": "https://raw.githubusercontent.com/owo-network/Repo/main/icons/com.example.piliplus.png",
"iconURL": "https://raw.githubusercontent.com/owo-network/Repo/main/icons/com.example.piliplus.png"
},
{
"name": "PiliPlus",
"realBundleID": "com.example.piliplus",
"bundleID": "com.example.piliplus",
"bundleIdentifier": "com.example.piliplus",
"version": "2.0.9",
"versionDate": "2026-06-12",
"fullDate": "20260612041418",
"size": 23388750,
"down": "https://github.com/OwO-Network/Repo/releases/download/PiliPlus_2.0.9/PiliPlus_2.0.9_Nothing_%40repo.owo.network.ipa",
"downloadURL": "https://github.com/OwO-Network/Repo/releases/download/PiliPlus_2.0.9/PiliPlus_2.0.9_Nothing_%40repo.owo.network.ipa",
"developerName": "",
"localizedDescription": "Injected with Nothing",
"icon": "https://raw.githubusercontent.com/owo-network/Repo/main/icons/com.example.piliplus.png",
"iconURL": "https://raw.githubusercontent.com/owo-network/Repo/main/icons/com.example.piliplus.png"
},
{
"name": "PiliPlus",
"realBundleID": "com.example.piliplus",
"bundleID": "com.example.piliplus",
"bundleIdentifier": "com.example.piliplus",
"version": "2.0.8.1",
"versionDate": "2026-06-06",
"fullDate": "20260606083636",
"size": 23460325,
"down": "https://github.com/OwO-Network/Repo/releases/download/PiliPlus_2.0.8.1/PiliPlus_2.0.8.1_Nothing_%40repo.owo.network.ipa",
"downloadURL": "https://github.com/OwO-Network/Repo/releases/download/PiliPlus_2.0.8.1/PiliPlus_2.0.8.1_Nothing_%40repo.owo.network.ipa",
"developerName": "",
"localizedDescription": "Injected with Nothing",
"icon": "https://raw.githubusercontent.com/owo-network/Repo/main/icons/com.example.piliplus.png",
"iconURL": "https://raw.githubusercontent.com/owo-network/Repo/main/icons/com.example.piliplus.png"
},
{
"name": "PiliPlus",
"realBundleID": "com.example.piliplus",
"bundleID": "com.example.piliplus",
"bundleIdentifier": "com.example.piliplus",
"version": "2.0.8",
"versionDate": "2026-06-04",
"fullDate": "20260604095958",
"size": 23458920,
"down": "https://github.com/OwO-Network/Repo/releases/download/PiliPlus_2.0.8/PiliPlus_2.0.8_Nothing_%40repo.owo.network.ipa",
"downloadURL": "https://github.com/OwO-Network/Repo/releases/download/PiliPlus_2.0.8/PiliPlus_2.0.8_Nothing_%40repo.owo.network.ipa",
"developerName": "",
"localizedDescription": "Injected with Nothing",
"icon": "https://raw.githubusercontent.com/owo-network/Repo/main/icons/com.example.piliplus.png",
"iconURL": "https://raw.githubusercontent.com/owo-network/Repo/main/icons/com.example.piliplus.png"
},
{
"name": "PiliPlus",
"realBundleID": "com.example.piliplus",
"bundleID": "com.example.piliplus",
"bundleIdentifier": "com.example.piliplus",
"version": "2.0.7.2",
"versionDate": "2026-05-18",
"fullDate": "20260518021214",
"size": 23837357,
"down": "https://github.com/OwO-Network/Repo/releases/download/PiliPlus_2.0.7.2/PiliPlus_2.0.7.2_Nothing_%40repo.owo.network.ipa",
"downloadURL": "https://github.com/OwO-Network/Repo/releases/download/PiliPlus_2.0.7.2/PiliPlus_2.0.7.2_Nothing_%40repo.owo.network.ipa",
"developerName": "",
"localizedDescription": "Injected with Nothing",
"icon": "https://raw.githubusercontent.com/owo-network/Repo/main/icons/com.example.piliplus.png",
"iconURL": "https://raw.githubusercontent.com/owo-network/Repo/main/icons/com.example.piliplus.png"
},
{
"name": "Swiftgram",
"realBundleID": "app.swiftgram.ios",
"bundleID": "app.swiftgram.ios",
"bundleIdentifier": "app.swiftgram.ios",
"version": "12.2",
"versionDate": "2025-11-21",
"fullDate": "20251121112227",
"size": 72453754,
"down": "https://github.com/OwO-Network/Repo/releases/download/2025-11-21/Swiftgram_12.2_Nothing_%40repo.owo.network.ipa",
"downloadURL": "https://github.com/OwO-Network/Repo/releases/download/2025-11-21/Swiftgram_12.2_Nothing_%40repo.owo.network.ipa",
"developerName": "",
"localizedDescription": "Injected with Nothing",
"icon": "https://raw.githubusercontent.com/owo-network/Repo/main/icons/app.swiftgram.ios.png",
"iconURL": "https://raw.githubusercontent.com/owo-network/Repo/main/icons/app.swiftgram.ios.png"
},
{
"name": "Swiftgram",
"realBundleID": "app.swiftgram.ios",
"bundleID": "app.swiftgram.ios",
"bundleIdentifier": "app.swiftgram.ios",
"version": "12.2",
"versionDate": "2025-11-21",
"fullDate": "20251121112223",
"size": 71674011,
"down": "https://github.com/OwO-Network/Repo/releases/download/2025-11-21/Swiftgram_12.2_SwiftgramCrack_1.1-4_%40repo.owo.network.ipa",
"downloadURL": "https://github.com/OwO-Network/Repo/releases/download/2025-11-21/Swiftgram_12.2_SwiftgramCrack_1.1-4_%40repo.owo.network.ipa",
"developerName": "",
"localizedDescription": "Injected with SwiftgramCrack 1.1-4",
"icon": "https://raw.githubusercontent.com/owo-network/Repo/main/icons/app.swiftgram.ios.png",
"iconURL": "https://raw.githubusercontent.com/owo-network/Repo/main/icons/app.swiftgram.ios.png"
},
{
"name": "Twitter",
"realBundleID": "com.atebits.Tweetie2",
"bundleID": "com.atebits.Tweetie2",
"bundleIdentifier": "com.atebits.Tweetie2",
"version": "11.35",
"versionDate": "2025-11-03",
"fullDate": "20251103164949",
"size": 153108663,
"down": "https://github.com/OwO-Network/Repo/releases/download/2025-11-04/Twitter_11.35_NeoFreeBird_2.2_%40repo.owo.network.ipa",
"downloadURL": "https://github.com/OwO-Network/Repo/releases/download/2025-11-04/Twitter_11.35_NeoFreeBird_2.2_%40repo.owo.network.ipa",
"developerName": "",
"localizedDescription": "Injected with NeoFreeBird 2.2",
"icon": "https://raw.githubusercontent.com/owo-network/Repo/main/icons/com.atebits.Tweetie2.png",
"iconURL": "https://raw.githubusercontent.com/owo-network/Repo/main/icons/com.atebits.Tweetie2.png"
},
{
"name": "Twitter",
"realBundleID": "com.atebits.Tweetie2",
"bundleID": "com.atebits.Tweetie2",
"bundleIdentifier": "com.atebits.Tweetie2",
"version": "11.35",
"versionDate": "2025-11-03",
"fullDate": "20251103164440",
"size": 158452402,
"down": "https://github.com/OwO-Network/Repo/releases/download/2025-11-04/Twitter_11.35_NeoFreeBird_2.2_NoFixTwitterLogin_%40repo.owo.network.ipa",
"downloadURL": "https://github.com/OwO-Network/Repo/releases/download/2025-11-04/Twitter_11.35_NeoFreeBird_2.2_NoFixTwitterLogin_%40repo.owo.network.ipa",
"developerName": "",
"localizedDescription": "Injected with NeoFreeBird 2.2 NoFixTwitterLogin",
"icon": "https://raw.githubusercontent.com/owo-network/Repo/main/icons/com.atebits.Tweetie2.png",
"iconURL": "https://raw.githubusercontent.com/owo-network/Repo/main/icons/com.atebits.Tweetie2.png"
},
{
"name": "Twitter",
"realBundleID": "com.atebits.Tweetie2",
"bundleID": "com.atebits.Tweetie2",
"bundleIdentifier": "com.atebits.Tweetie2",
"version": "11.33",
"versionDate": "2025-10-27",
"fullDate": "20251027114434",
"size": 161265911,
"down": "https://github.com/OwO-Network/Repo/releases/download/2025-10-27/Twitter_11.33_NeoFreeBird_2.1_%40repo.owo.network.ipa",
"downloadURL": "https://github.com/OwO-Network/Repo/releases/download/2025-10-27/Twitter_11.33_NeoFreeBird_2.1_%40repo.owo.network.ipa",
"developerName": "",
"localizedDescription": "Injected with NeoFreeBird 2.1",
"icon": "https://raw.githubusercontent.com/owo-network/Repo/main/icons/com.atebits.Tweetie2.png",
"iconURL": "https://raw.githubusercontent.com/owo-network/Repo/main/icons/com.atebits.Tweetie2.png"
},
{
"name": "Instagram",
"realBundleID": "com.burbn.instagram",
"bundleID": "com.burbn.instagram",
"bundleIdentifier": "com.burbn.instagram",
"version": "400.1.0",
"versionDate": "2025-10-03",
"fullDate": "20251003080203",
"size": 285502894,
"down": "https://github.com/OwO-Network/Repo/releases/download/2025-10-03/Instagram_400.1.0_Regram_2.0_%40repo.owo.network.ipa",
"downloadURL": "https://github.com/OwO-Network/Repo/releases/download/2025-10-03/Instagram_400.1.0_Regram_2.0_%40repo.owo.network.ipa",
"developerName": "",
"localizedDescription": "Injected with Regram 2.0",
"icon": "https://raw.githubusercontent.com/owo-network/Repo/main/icons/com.burbn.instagram.png",
"iconURL": "https://raw.githubusercontent.com/owo-network/Repo/main/icons/com.burbn.instagram.png"
},
{
"name": "Instagram",
"realBundleID": "com.burbn.instagram",
"bundleID": "com.burbn.instagram",
"bundleIdentifier": "com.burbn.instagram",
"version": "398.0.0",
"versionDate": "2025-09-17",
"fullDate": "20250917132755",
"size": 273467928,
"down": "https://github.com/OwO-Network/Repo/releases/download/2025-09-17/Instagram_398.0.0_Regram_1.0-b37_%40repo.owo.network.ipa",
"downloadURL": "https://github.com/OwO-Network/Repo/releases/download/2025-09-17/Instagram_398.0.0_Regram_1.0-b37_%40repo.owo.network.ipa",
"developerName": "",
"localizedDescription": "Injected with Regram 1.0-b37",
"icon": "https://raw.githubusercontent.com/owo-network/Repo/main/icons/com.burbn.instagram.png",
"iconURL": "https://raw.githubusercontent.com/owo-network/Repo/main/icons/com.burbn.instagram.png"
},
{
"name": "Asspp",
"realBundleID": "wiki.qaq.Asspp",
"bundleID": "wiki.qaq.Asspp",
"bundleIdentifier": "wiki.qaq.Asspp",
"version": "2.2",
"versionDate": "2025-09-15",
"fullDate": "20250915143514",
"size": 7032503,
"down": "https://github.com/OwO-Network/Repo/releases/download/2025-09-15/Asspp_2.2_Nothing_%40repo.owo.network.ipa",
"downloadURL": "https://github.com/OwO-Network/Repo/releases/download/2025-09-15/Asspp_2.2_Nothing_%40repo.owo.network.ipa",
"developerName": "",
"localizedDescription": "Injected with Nothing",
"icon": "https://raw.githubusercontent.com/owo-network/Repo/main/icons/wiki.qaq.Asspp.png",
"iconURL": "https://raw.githubusercontent.com/owo-network/Repo/main/icons/wiki.qaq.Asspp.png"
},
{
"name": "Twitter",
"realBundleID": "com.atebits.Tweetie2",
"bundleID": "com.atebits.Tweetie2",
"bundleIdentifier": "com.atebits.Tweetie2",
"version": "11.5.5",
"versionDate": "2025-08-21",
"fullDate": "20250821001506",
"size": 165137998,
"down": "https://github.com/OwO-Network/Repo/releases/download/2025-08-21/Twitter_11.5.5_NeoFreeBird_2.0_OpenInTwitter_%40repo.owo.network.ipa",
"downloadURL": "https://github.com/OwO-Network/Repo/releases/download/2025-08-21/Twitter_11.5.5_NeoFreeBird_2.0_OpenInTwitter_%40repo.owo.network.ipa",
"developerName": "",
"localizedDescription": "Injected with NeoFreeBird 2.0 OpenInTwitter",
"icon": "https://raw.githubusercontent.com/owo-network/Repo/main/icons/com.atebits.Tweetie2.png",
"iconURL": "https://raw.githubusercontent.com/owo-network/Repo/main/icons/com.atebits.Tweetie2.png"
},
{
"name": "DYDL",
"realBundleID": "nz.owo.DYDL",
"bundleID": "nz.owo.DYDL",
"bundleIdentifier": "nz.owo.DYDL",
"version": "1.0.0",
"versionDate": "2025-08-18",
"fullDate": "20250818022640",
"size": 928970,
"down": "https://github.com/OwO-Network/Repo/releases/download/2025-08-18/DYDL_1.0.0_Nothing_%40repo.owo.network.ipa",
"downloadURL": "https://github.com/OwO-Network/Repo/releases/download/2025-08-18/DYDL_1.0.0_Nothing_%40repo.owo.network.ipa",
"developerName": "",
"localizedDescription": "Injected with Nothing",
"icon": "https://raw.githubusercontent.com/owo-network/Repo/main/icons/nz.owo.DYDL.png",
"iconURL": "https://raw.githubusercontent.com/owo-network/Repo/main/icons/nz.owo.DYDL.png"
},
{
"name": "Twitter",
"realBundleID": "com.atebits.Tweetie2",
"bundleID": "com.atebits.Tweetie2",
"bundleIdentifier": "com.atebits.Tweetie2",
"version": "11.5.5",
"versionDate": "2025-08-14",
"fullDate": "20250814224240",
"size": 164911428,
"down": "https://github.com/OwO-Network/Repo/releases/download/2025-08-15/Twitter_11.5.5_NeoFreeBird_2.0-Rev2_%40repo.owo.network.ipa",
"downloadURL": "https://github.com/OwO-Network/Repo/releases/download/2025-08-15/Twitter_11.5.5_NeoFreeBird_2.0-Rev2_%40repo.owo.network.ipa",
"developerName": "",
"localizedDescription": "Injected with NeoFreeBird 2.0-Rev2",
"icon": "https://raw.githubusercontent.com/owo-network/Repo/main/icons/com.atebits.Tweetie2.png",
"iconURL": "https://raw.githubusercontent.com/owo-network/Repo/main/icons/com.atebits.Tweetie2.png"
},
{
"name": "Twitter",
"realBundleID": "com.atebits.Tweetie2",
"bundleID": "com.atebits.Tweetie2",
"bundleIdentifier": "com.atebits.Tweetie2",
"version": "11.5.5",
"versionDate": "2025-08-14",
"fullDate": "20250814192547",
"size": 164855939,
"down": "https://github.com/OwO-Network/Repo/releases/download/2025-08-15/Twitter_11.5.5_NeoFreeBird_2.0_%40repo.owo.network.ipa",
"downloadURL": "https://github.com/OwO-Network/Repo/releases/download/2025-08-15/Twitter_11.5.5_NeoFreeBird_2.0_%40repo.owo.network.ipa",
"developerName": "",
"localizedDescription": "Injected with NeoFreeBird 2.0",
"icon": "https://raw.githubusercontent.com/owo-network/Repo/main/icons/com.atebits.Tweetie2.png",
"iconURL": "https://raw.githubusercontent.com/owo-network/Repo/main/icons/com.atebits.Tweetie2.png"
},
{
"name": "WeChat",
"realBundleID": "com.tencent.xin",
"bundleID": "com.tencent.xin",
"bundleIdentifier": "com.tencent.xin",
"version": "8.0.62",
"versionDate": "2025-08-11",
"fullDate": "20250811155047",
"size": 357967048,
"down": "https://github.com/OwO-Network/Repo/releases/download/2025-08-11/WeChat_8.0.62_PKC_0.7.8_MiYou_3.8.7_XNSP_2.2.5_WCElite_1.3.4_HBWechatHelper_1.9.0_wx_%40repo.owo.network.ipa",
"downloadURL": "https://github.com/OwO-Network/Repo/releases/download/2025-08-11/WeChat_8.0.62_PKC_0.7.8_MiYou_3.8.7_XNSP_2.2.5_WCElite_1.3.4_HBWechatHelper_1.9.0_wx_%40repo.owo.network.ipa",
"developerName": "",
"localizedDescription": "Injected with PKC 0.7.8 MiYou 3.8.7 XNSP 2.2.5 WCElite 1.3.4 HBWechatHelper 1.9.0 wx",
"icon": "https://raw.githubusercontent.com/owo-network/Repo/main/icons/com.tencent.xin.png",
"iconURL": "https://raw.githubusercontent.com/owo-network/Repo/main/icons/com.tencent.xin.png"
},
{
"name": "WeChat",
"realBundleID": "com.tencent.xin",
"bundleID": "com.tencent.xin",
"bundleIdentifier": "com.tencent.xin",
"version": "8.0.57",
"versionDate": "2025-08-11",
"fullDate": "20250811154553",
"size": 346427258,
"down": "https://github.com/OwO-Network/Repo/releases/download/2025-08-11/WeChat_8.0.57_PKC_0.7.8_MiYou_3.8.7_XNSP_2.2.5_WCElite_1.3.4_HBWechatHelper_1.9.0_wx_%40repo.owo.network.ipa",
"downloadURL": "https://github.com/OwO-Network/Repo/releases/download/2025-08-11/WeChat_8.0.57_PKC_0.7.8_MiYou_3.8.7_XNSP_2.2.5_WCElite_1.3.4_HBWechatHelper_1.9.0_wx_%40repo.owo.network.ipa",
"developerName": "",
"localizedDescription": "Injected with PKC 0.7.8 MiYou 3.8.7 XNSP 2.2.5 WCElite 1.3.4 HBWechatHelper 1.9.0 wx",
"icon": "https://raw.githubusercontent.com/owo-network/Repo/main/icons/com.tencent.xin.png",
"iconURL": "https://raw.githubusercontent.com/owo-network/Repo/main/icons/com.tencent.xin.png"
},
{
"name": "WeChat",
"realBundleID": "com.tencent.xin",
"bundleID": "com.tencent.xin",
"bundleIdentifier": "com.tencent.xin",
"version": "8.0.57",
"versionDate": "2025-08-11",
"fullDate": "20250811154139",
"size": 346427262,
"down": "https://github.com/OwO-Network/Repo/releases/download/2025-08-11/WeChat_8.0.57_PKC_0.7.8_MiYou_3.8.7_XNSP_2.2.5_WCElite_1.3.4_HBWechatHelper_1.9.0_qy.xin_%40repo.owo.network.ipa",
"downloadURL": "https://github.com/OwO-Network/Repo/releases/download/2025-08-11/WeChat_8.0.57_PKC_0.7.8_MiYou_3.8.7_XNSP_2.2.5_WCElite_1.3.4_HBWechatHelper_1.9.0_qy.xin_%40repo.owo.network.ipa",
"developerName": "",
"localizedDescription": "Injected with PKC 0.7.8 MiYou 3.8.7 XNSP 2.2.5 WCElite 1.3.4 HBWechatHelper 1.9.0 qy.xin",
"icon": "https://raw.githubusercontent.com/owo-network/Repo/main/icons/com.tencent.xin.png",
"iconURL": "https://raw.githubusercontent.com/owo-network/Repo/main/icons/com.tencent.xin.png"
},
{
"name": "WeChat",
"realBundleID": "com.tencent.xin",
"bundleID": "com.tencent.xin",
"bundleIdentifier": "com.tencent.xin",
"version": "8.0.62",
"versionDate": "2025-08-11",
"fullDate": "20250811153732",
"size": 357967051,
"down": "https://github.com/OwO-Network/Repo/releases/download/2025-08-11/WeChat_8.0.62_PKC_0.7.8_MiYou_3.8.7_XNSP_2.2.5_WCElite_1.3.4_HBWechatHelper_1.9.0_qy.xin_%40repo.owo.network.ipa",
"downloadURL": "https://github.com/OwO-Network/Repo/releases/download/2025-08-11/WeChat_8.0.62_PKC_0.7.8_MiYou_3.8.7_XNSP_2.2.5_WCElite_1.3.4_HBWechatHelper_1.9.0_qy.xin_%40repo.owo.network.ipa",
"developerName": "",
"localizedDescription": "Injected with PKC 0.7.8 MiYou 3.8.7 XNSP 2.2.5 WCElite 1.3.4 HBWechatHelper 1.9.0 qy.xin",
"icon": "https://raw.githubusercontent.com/owo-network/Repo/main/icons/com.tencent.xin.png",
"iconURL": "https://raw.githubusercontent.com/owo-network/Repo/main/icons/com.tencent.xin.png"
},
{
"name": "Instagram",
"realBundleID": "com.burbn.instagram",
"bundleID": "com.burbn.instagram",
"bundleIdentifier": "com.burbn.instagram",
"version": "392.0.0",
"versionDate": "2025-08-11",
"fullDate": "20250811152619",
"size": 268168407,
"down": "https://github.com/OwO-Network/Repo/releases/download/2025-08-11/Instagram_392.0.0_Regram_1.0-b35_%40repo.owo.network.ipa",
"downloadURL": "https://github.com/OwO-Network/Repo/releases/download/2025-08-11/Instagram_392.0.0_Regram_1.0-b35_%40repo.owo.network.ipa",
"developerName": "",
"localizedDescription": "Injected with Regram 1.0-b35",
"icon": "https://raw.githubusercontent.com/owo-network/Repo/main/icons/com.burbn.instagram.png",
"iconURL": "https://raw.githubusercontent.com/owo-network/Repo/main/icons/com.burbn.instagram.png"
},
{
"name": "WeChat",
"realBundleID": "com.tencent.xin",
"bundleID": "com.tencent.xin",
"bundleIdentifier": "com.tencent.xin",
"version": "8.0.57",
"versionDate": "2025-07-11",
"fullDate": "20250711191734",
"size": 327694087,
"down": "https://github.com/OwO-Network/Repo/releases/download/2025-07-12/WeChat_8.0.57_PKC_0.7.8_MiYou_3.8.7_XNSP_2.2.5_WCElite_1.2.6_Push_Sound_Backup_%40repo.owo.network.ipa",
"downloadURL": "https://github.com/OwO-Network/Repo/releases/download/2025-07-12/WeChat_8.0.57_PKC_0.7.8_MiYou_3.8.7_XNSP_2.2.5_WCElite_1.2.6_Push_Sound_Backup_%40repo.owo.network.ipa",
"developerName": "",
"localizedDescription": "Injected with PKC 0.7.8 MiYou 3.8.7 XNSP 2.2.5 WCElite 1.2.6 Push Sound Backup",
"icon": "https://raw.githubusercontent.com/owo-network/Repo/main/icons/com.tencent.xin.png",
"iconURL": "https://raw.githubusercontent.com/owo-network/Repo/main/icons/com.tencent.xin.png"
},
{
"name": "BilibiliIntl",
"realBundleID": "com.bilibili.inter",
"bundleID": "com.bilibili.inter",
"bundleIdentifier": "com.bilibili.inter",
"version": "3.20.1",
"versionDate": "2025-07-04",
"fullDate": "20250704072423",
"size": 186959725,
"down": "https://github.com/OwO-Network/Repo/releases/download/2025-07-04/BilibiliIntl_3.20.1_Nothing_%40repo.owo.network.ipa",
"downloadURL": "https://github.com/OwO-Network/Repo/releases/download/2025-07-04/BilibiliIntl_3.20.1_Nothing_%40repo.owo.network.ipa",
"developerName": "",
"localizedDescription": "Injected with Nothing",
"icon": "https://raw.githubusercontent.com/owo-network/Repo/main/icons/com.bilibili.inter.png",
"iconURL": "https://raw.githubusercontent.com/owo-network/Repo/main/icons/com.bilibili.inter.png"
},
{
"name": "Instagram",
"realBundleID": "com.burbn.instagram",
"bundleID": "com.burbn.instagram",
"bundleIdentifier": "com.burbn.instagram",
"version": "387.0.0",
"versionDate": "2025-06-30",
"fullDate": "20250630164554",
"size": 266117885,
"down": "https://github.com/OwO-Network/Repo/releases/download/2025-07-01/Instagram_387.0.0_Regram_1.0-b32_%40repo.owo.network.ipa",
"downloadURL": "https://github.com/OwO-Network/Repo/releases/download/2025-07-01/Instagram_387.0.0_Regram_1.0-b32_%40repo.owo.network.ipa",
"developerName": "",
"localizedDescription": "Injected with Regram 1.0-b32",
"icon": "https://raw.githubusercontent.com/owo-network/Repo/main/icons/com.burbn.instagram.png",
"iconURL": "https://raw.githubusercontent.com/owo-network/Repo/main/icons/com.burbn.instagram.png"
},
{
"name": "WeChat",
"realBundleID": "com.tencent.xin",
"bundleID": "com.tencent.xin",
"bundleIdentifier": "com.tencent.xin",
"version": "8.0.57",
"versionDate": "2025-06-28",
"fullDate": "20250628192956",
"size": 332469361,
"down": "https://github.com/OwO-Network/Repo/releases/download/2025-06-29/WeChat_8.0.57_PKC_0.7.8_MiYou_3.8.6_XNSP_2.2.5_WCElite_1.2.6_Push_Sound_Backup_%40repo.owo.network.ipa",
"downloadURL": "https://github.com/OwO-Network/Repo/releases/download/2025-06-29/WeChat_8.0.57_PKC_0.7.8_MiYou_3.8.6_XNSP_2.2.5_WCElite_1.2.6_Push_Sound_Backup_%40repo.owo.network.ipa",
"developerName": "",
"localizedDescription": "Injected with PKC 0.7.8 MiYou 3.8.6 XNSP 2.2.5 WCElite 1.2.6 Push Sound Backup",
"icon": "https://raw.githubusercontent.com/owo-network/Repo/main/icons/com.tencent.xin.png",
"iconURL": "https://raw.githubusercontent.com/owo-network/Repo/main/icons/com.tencent.xin.png"
},
{
"name": "WeChat",
"realBundleID": "com.tencent.xin",
"bundleID": "com.tencent.xin",
"bundleIdentifier": "com.tencent.xin",
"version": "8.0.57",
"versionDate": "2025-06-16",
"fullDate": "20250616122347",
"size": 332328013,
"down": "https://github.com/OwO-Network/Repo/releases/download/2025-06-16/WeChat_8.0.57_PKC_0.7.8_MiYou_3.8.5_XNSP_2.2.5_WCElite_1.2.6_Push_Sound_Backup_%40repo.owo.network.ipa",
"downloadURL": "https://github.com/OwO-Network/Repo/releases/download/2025-06-16/WeChat_8.0.57_PKC_0.7.8_MiYou_3.8.5_XNSP_2.2.5_WCElite_1.2.6_Push_Sound_Backup_%40repo.owo.network.ipa",
"developerName": "",
"localizedDescription": "Injected with PKC 0.7.8 MiYou 3.8.5 XNSP 2.2.5 WCElite 1.2.6 Push Sound Backup",
"icon": "https://raw.githubusercontent.com/owo-network/Repo/main/icons/com.tencent.xin.png",
"iconURL": "https://raw.githubusercontent.com/owo-network/Repo/main/icons/com.tencent.xin.png"
},
{
"name": "WeChat",
"realBundleID": "com.tencent.xin",
"bundleID": "com.tencent.xin",
"bundleIdentifier": "com.tencent.xin",
"version": "8.0.57",
"versionDate": "2025-06-14",
"fullDate": "20250614065421",
"size": 332325568,
"down": "https://github.com/OwO-Network/Repo/releases/download/2025-06-14/WeChat_8.0.57_PKC_0.7.8_MiYou_3.8.5_XNSP_2.2.5_WCElite_1.2.6_Push_Sound_%40repo.owo.network.ipa",
"downloadURL": "https://github.com/OwO-Network/Repo/releases/download/2025-06-14/WeChat_8.0.57_PKC_0.7.8_MiYou_3.8.5_XNSP_2.2.5_WCElite_1.2.6_Push_Sound_%40repo.owo.network.ipa",
"developerName": "",
"localizedDescription": "Injected with PKC 0.7.8 MiYou 3.8.5 XNSP 2.2.5 WCElite 1.2.6 Push Sound",
"icon": "https://raw.githubusercontent.com/owo-network/Repo/main/icons/com.tencent.xin.png",
"iconURL": "https://raw.githubusercontent.com/owo-network/Repo/main/icons/com.tencent.xin.png"
},
{
"name": "Instagram",
"realBundleID": "com.burbn.instagram",
"bundleID": "com.burbn.instagram",
"bundleIdentifier": "com.burbn.instagram",
"version": "384.0.0",
"versionDate": "2025-06-13",
"fullDate": "20250613091835",
"size": 246169959,
"down": "https://github.com/OwO-Network/Repo/releases/download/2025-06-13/Instagram_384.0.0_Regram_1.0-b31_%40repo.owo.network.ipa",
"downloadURL": "https://github.com/OwO-Network/Repo/releases/download/2025-06-13/Instagram_384.0.0_Regram_1.0-b31_%40repo.owo.network.ipa",
"developerName": "",
"localizedDescription": "Injected with Regram 1.0-b31",
"icon": "https://raw.githubusercontent.com/owo-network/Repo/main/icons/com.burbn.instagram.png",
"iconURL": "https://raw.githubusercontent.com/owo-network/Repo/main/icons/com.burbn.instagram.png"
},
{
"name": "WeChat",
"realBundleID": "com.tencent.xin",
"bundleID": "com.tencent.xin",
"bundleIdentifier": "com.tencent.xin",
"version": "8.0.57",
"versionDate": "2025-06-10",
"fullDate": "20250610103632",
"size": 311741968,
"down": "https://github.com/OwO-Network/Repo/releases/download/2025-06-09/WeChat_8.0.57_Nothing_%40repo.owo.network.ipa",
"downloadURL": "https://github.com/OwO-Network/Repo/releases/download/2025-06-09/WeChat_8.0.57_Nothing_%40repo.owo.network.ipa",
"developerName": "",
"localizedDescription": "Injected with Nothing",
"icon": "https://raw.githubusercontent.com/owo-network/Repo/main/icons/com.tencent.xin.png",
"iconURL": "https://raw.githubusercontent.com/owo-network/Repo/main/icons/com.tencent.xin.png"
},
{
"name": "WeChat",
"realBundleID": "com.tencent.xin",
"bundleID": "com.tencent.xin",
"bundleIdentifier": "com.tencent.xin",
"version": "8.0.57",
"versionDate": "2025-06-09",
"fullDate": "20250609154613",
"size": 306694784,
"down": "https://github.com/OwO-Network/Repo/releases/download/2025-06-09/WeChat_8.0.57_PKC_0.7.6_MiYou_3.8.4_XNSP_2.2.5_WCElite_1.2.6_Push_Sound_Fixed_%40repo.owo.network.ipa",
"downloadURL": "https://github.com/OwO-Network/Repo/releases/download/2025-06-09/WeChat_8.0.57_PKC_0.7.6_MiYou_3.8.4_XNSP_2.2.5_WCElite_1.2.6_Push_Sound_Fixed_%40repo.owo.network.ipa",
"developerName": "",
"localizedDescription": "Injected with PKC 0.7.6 MiYou 3.8.4 XNSP 2.2.5 WCElite 1.2.6 Push Sound Fixed",
"icon": "https://raw.githubusercontent.com/owo-network/Repo/main/icons/com.tencent.xin.png",
"iconURL": "https://raw.githubusercontent.com/owo-network/Repo/main/icons/com.tencent.xin.png"
},
{
"name": "WeChat",
"realBundleID": "com.tencent.xin",
"bundleID": "com.tencent.xin",
"bundleIdentifier": "com.tencent.xin",
"version": "8.0.57",
"versionDate": "2025-05-28",
"fullDate": "20250528191648",
"size": 331982572,
"down": "https://github.com/OwO-Network/Repo/releases/download/2025-05-28/WeChat_8.0.57_PKC_0.7.6_MiYou_3.8.4_XNSP_2.2.5_WCElite_1.2.6_Push_Sound_%40repo.owo.network.ipa",
"downloadURL": "https://github.com/OwO-Network/Repo/releases/download/2025-05-28/WeChat_8.0.57_PKC_0.7.6_MiYou_3.8.4_XNSP_2.2.5_WCElite_1.2.6_Push_Sound_%40repo.owo.network.ipa",
"developerName": "",
"localizedDescription": "Injected with PKC 0.7.6 MiYou 3.8.4 XNSP 2.2.5 WCElite 1.2.6 Push Sound",
"icon": "https://raw.githubusercontent.com/owo-network/Repo/main/icons/com.tencent.xin.png",
"iconURL": "https://raw.githubusercontent.com/owo-network/Repo/main/icons/com.tencent.xin.png"
},
{
"name": "Instagram",
"realBundleID": "com.burbn.instagram",
"bundleID": "com.burbn.instagram",
"bundleIdentifier": "com.burbn.instagram",
"version": "380.0.0",
"versionDate": "2025-05-20",
"fullDate": "20250520134840",
"size": 235196886,
"down": "https://github.com/OwO-Network/Repo/releases/download/2025-05-20/Instagram_380.0.0_Regram_1.0-b30_%40repo.owo.network.ipa",
"downloadURL": "https://github.com/OwO-Network/Repo/releases/download/2025-05-20/Instagram_380.0.0_Regram_1.0-b30_%40repo.owo.network.ipa",
"developerName": "",
"localizedDescription": "Injected with Regram 1.0-b30",
"icon": "https://raw.githubusercontent.com/owo-network/Repo/main/icons/com.burbn.instagram.png",
"iconURL": "https://raw.githubusercontent.com/owo-network/Repo/main/icons/com.burbn.instagram.png"
},
{
"name": "WeChat",
"realBundleID": "com.tencent.xin",
"bundleID": "com.tencent.xin",
"bundleIdentifier": "com.tencent.xin",
"version": "8.0.59",
"versionDate": "2025-05-19",
"fullDate": "20250519124442",
"size": 344016167,
"down": "https://github.com/OwO-Network/Repo/releases/download/2025-05-19/WeChat_8.0.59_PKC_0.7.3_MiYou_3.8.4_XNSP_2.2.5_WCElite_1.2.6_Push_Sound_%40repo.owo.network.ipa",
"downloadURL": "https://github.com/OwO-Network/Repo/releases/download/2025-05-19/WeChat_8.0.59_PKC_0.7.3_MiYou_3.8.4_XNSP_2.2.5_WCElite_1.2.6_Push_Sound_%40repo.owo.network.ipa",
"developerName": "",
"localizedDescription": "Injected with PKC 0.7.3 MiYou 3.8.4 XNSP 2.2.5 WCElite 1.2.6 Push Sound",
"icon": "https://raw.githubusercontent.com/owo-network/Repo/main/icons/com.tencent.xin.png",
"iconURL": "https://raw.githubusercontent.com/owo-network/Repo/main/icons/com.tencent.xin.png"
},
{
"name": "Douyin",
"realBundleID": "com.ss.iphone.ugc.Aweme",
"bundleID": "com.ss.iphone.ugc.Aweme",
"bundleIdentifier": "com.ss.iphone.ugc.Aweme",
"version": "34.2.0",
"versionDate": "2025-05-14",
"fullDate": "20250514081736",
"size": 756876088,
"down": "https://github.com/OwO-Network/Repo/releases/download/2025-05-14/Douyin_34.2.0_DYYY_2.2-7_%40repo.owo.network.ipa",
"downloadURL": "https://github.com/OwO-Network/Repo/releases/download/2025-05-14/Douyin_34.2.0_DYYY_2.2-7_%40repo.owo.network.ipa",
"developerName": "",
"localizedDescription": "Injected with DYYY 2.2-7",
"icon": "https://raw.githubusercontent.com/owo-network/Repo/main/icons/com.ss.iphone.ugc.Aweme.png",
"iconURL": "https://raw.githubusercontent.com/owo-network/Repo/main/icons/com.ss.iphone.ugc.Aweme.png"
},
{
"name": "Twitter",
"realBundleID": "com.atebits.Tweetie2",
"bundleID": "com.atebits.Tweetie2",
"bundleIdentifier": "com.atebits.Tweetie2",
"version": "10.97.1",
"versionDate": "2025-05-14",
"fullDate": "20250514054029",
"size": 167001383,
"down": "https://github.com/OwO-Network/Repo/releases/download/2025-05-14/Twitter_10.97.1_BHTwitter_4.4_%40repo.owo.network.ipa",
"downloadURL": "https://github.com/OwO-Network/Repo/releases/download/2025-05-14/Twitter_10.97.1_BHTwitter_4.4_%40repo.owo.network.ipa",
"developerName": "",
"localizedDescription": "Injected with BHTwitter 4.4",
"icon": "https://raw.githubusercontent.com/owo-network/Repo/main/icons/com.atebits.Tweetie2.png",
"iconURL": "https://raw.githubusercontent.com/owo-network/Repo/main/icons/com.atebits.Tweetie2.png"
},
{
"name": "WeChat",
"realBundleID": "com.tencent.xin",
"bundleID": "com.tencent.xin",
"bundleIdentifier": "com.tencent.xin",
"version": "8.0.57",
"versionDate": "2025-05-02",
"fullDate": "20250502031030",
"size": 331663686,
"down": "https://github.com/OwO-Network/Repo/releases/download/2025-05-01/WeChat_8.0.57_PKC_0.7.3_MiYou_3.8.4_XNSP_2.2.5_WCElite_1.2.6_Push_Sound_%40repo.owo.network.ipa",
"downloadURL": "https://github.com/OwO-Network/Repo/releases/download/2025-05-01/WeChat_8.0.57_PKC_0.7.3_MiYou_3.8.4_XNSP_2.2.5_WCElite_1.2.6_Push_Sound_%40repo.owo.network.ipa",
"developerName": "",
"localizedDescription": "Injected with PKC 0.7.3 MiYou 3.8.4 XNSP 2.2.5 WCElite 1.2.6 Push Sound",
"icon": "https://raw.githubusercontent.com/owo-network/Repo/main/icons/com.tencent.xin.png",
"iconURL": "https://raw.githubusercontent.com/owo-network/Repo/main/icons/com.tencent.xin.png"
},
{
"name": "Instagram",
"realBundleID": "com.burbn.instagram",
"bundleID": "com.burbn.instagram",
"bundleIdentifier": "com.burbn.instagram",
"version": "378.0.0",
"versionDate": "2025-05-01",
"fullDate": "20250501223706",
"size": 267498787,
"down": "https://github.com/OwO-Network/Repo/releases/download/2025-05-01/Instagram_378.0.0_Regram_1.0-b29_%40repo.owo.network.ipa",
"downloadURL": "https://github.com/OwO-Network/Repo/releases/download/2025-05-01/Instagram_378.0.0_Regram_1.0-b29_%40repo.owo.network.ipa",
"developerName": "",
"localizedDescription": "Injected with Regram 1.0-b29",
"icon": "https://raw.githubusercontent.com/owo-network/Repo/main/icons/com.burbn.instagram.png",
"iconURL": "https://raw.githubusercontent.com/owo-network/Repo/main/icons/com.burbn.instagram.png"
},
{
"name": "Instagram",
"realBundleID": "com.burbn.instagram",
"bundleID": "com.burbn.instagram",
"bundleIdentifier": "com.burbn.instagram",
"version": "378.0.0",
"versionDate": "2025-05-01",
"fullDate": "20250501213809",
"size": 267498197,
"down": "https://github.com/OwO-Network/Repo/releases/download/2025-05-01/Instagram_378.0.0_Regram_1.0-b28_%40repo.owo.network.ipa",
"downloadURL": "https://github.com/OwO-Network/Repo/releases/download/2025-05-01/Instagram_378.0.0_Regram_1.0-b28_%40repo.owo.network.ipa",
"developerName": "",
"localizedDescription": "Injected with Regram 1.0-b28",
"icon": "https://raw.githubusercontent.com/owo-network/Repo/main/icons/com.burbn.instagram.png",
"iconURL": "https://raw.githubusercontent.com/owo-network/Repo/main/icons/com.burbn.instagram.png"
},
{
"name": "WeChat",
"realBundleID": "com.tencent.xin",
"bundleID": "com.tencent.xin",
"bundleIdentifier": "com.tencent.xin",
"version": "8.0.57",
"versionDate": "2025-04-30",
"fullDate": "20250430061200",
"size": 305816268,
"down": "https://github.com/OwO-Network/Repo/releases/download/2025-04-30/WeChat_8.0.57_PKC_0.7.3_MiYou_3.8.4_XNSP_2.2.5_Push_Sound_%40repo.owo.network.ipa",
"downloadURL": "https://github.com/OwO-Network/Repo/releases/download/2025-04-30/WeChat_8.0.57_PKC_0.7.3_MiYou_3.8.4_XNSP_2.2.5_Push_Sound_%40repo.owo.network.ipa",
"developerName": "",
"localizedDescription": "Injected with PKC 0.7.3 MiYou 3.8.4 XNSP 2.2.5 Push Sound",
"icon": "https://raw.githubusercontent.com/owo-network/Repo/main/icons/com.tencent.xin.png",
"iconURL": "https://raw.githubusercontent.com/owo-network/Repo/main/icons/com.tencent.xin.png"
},
{
"name": "WeChat",
"realBundleID": "com.tencent.xin",
"bundleID": "com.tencent.xin",
"bundleIdentifier": "com.tencent.xin",
"version": "8.0.59",
"versionDate": "2025-04-25",
"fullDate": "20250425051631",
"size": 343240847,
"down": "https://github.com/OwO-Network/Repo/releases/download/2025-04-25/WeChat_8.0.59_PKC_0.7.3_MiYou_3.8.4_XNSP_2.2.5_Push_%40repo.owo.network.ipa",
"downloadURL": "https://github.com/OwO-Network/Repo/releases/download/2025-04-25/WeChat_8.0.59_PKC_0.7.3_MiYou_3.8.4_XNSP_2.2.5_Push_%40repo.owo.network.ipa",
"developerName": "",
"localizedDescription": "Injected with PKC 0.7.3 MiYou 3.8.4 XNSP 2.2.5 Push",
"icon": "https://raw.githubusercontent.com/owo-network/Repo/main/icons/com.tencent.xin.png",
"iconURL": "https://raw.githubusercontent.com/owo-network/Repo/main/icons/com.tencent.xin.png"
},
{
"name": "WeChat",
"realBundleID": "com.tencent.xin",
"bundleID": "com.tencent.xin",
"bundleIdentifier": "com.tencent.xin",
"version": "8.0.57",
"versionDate": "2025-04-25",
"fullDate": "20250425051557",
"size": 331031045,
"down": "https://github.com/OwO-Network/Repo/releases/download/2025-04-25/WeChat_8.0.57_PKC_0.7.3_MiYou_3.8.4_XNSP_2.2.5_Push_%40repo.owo.network.ipa",
"downloadURL": "https://github.com/OwO-Network/Repo/releases/download/2025-04-25/WeChat_8.0.57_PKC_0.7.3_MiYou_3.8.4_XNSP_2.2.5_Push_%40repo.owo.network.ipa",
"developerName": "",
"localizedDescription": "Injected with PKC 0.7.3 MiYou 3.8.4 XNSP 2.2.5 Push",
"icon": "https://raw.githubusercontent.com/owo-network/Repo/main/icons/com.tencent.xin.png",
"iconURL": "https://raw.githubusercontent.com/owo-network/Repo/main/icons/com.tencent.xin.png"
},
{
"name": "WeChat",
"realBundleID": "com.tencent.xin",
"bundleID": "com.tencent.xin",
"bundleIdentifier": "com.tencent.xin",
"version": "8.0.59",
"versionDate": "2025-04-22",
"fullDate": "20250422063441",
"size": 342373933,
"down": "https://github.com/OwO-Network/Repo/releases/download/2025-04-22/WeChat_8.0.59_PKC_0.7.3_MiYou_3.8.3_XNSP_2.2.5_Push_%40repo.owo.network.ipa",
"downloadURL": "https://github.com/OwO-Network/Repo/releases/download/2025-04-22/WeChat_8.0.59_PKC_0.7.3_MiYou_3.8.3_XNSP_2.2.5_Push_%40repo.owo.network.ipa",
"developerName": "",
"localizedDescription": "Injected with PKC 0.7.3 MiYou 3.8.3 XNSP 2.2.5 Push",
"icon": "https://raw.githubusercontent.com/owo-network/Repo/main/icons/com.tencent.xin.png",
"iconURL": "https://raw.githubusercontent.com/owo-network/Repo/main/icons/com.tencent.xin.png"
},
{
"name": "Instagram",
"realBundleID": "com.burbn.instagram",
"bundleID": "com.burbn.instagram",
"bundleIdentifier": "com.burbn.instagram",
"version": "376.0.0",
"versionDate": "2025-04-18",
"fullDate": "20250418042317",
"size": 217661244,
"down": "https://github.com/OwO-Network/Repo/releases/download/2025-04-18/Instagram_376.0.0_Regram_1.0-b27_%40repo.owo.network.ipa",
"downloadURL": "https://github.com/OwO-Network/Repo/releases/download/2025-04-18/Instagram_376.0.0_Regram_1.0-b27_%40repo.owo.network.ipa",
"developerName": "",
"localizedDescription": "Injected with Regram 1.0-b27",
"icon": "https://raw.githubusercontent.com/owo-network/Repo/main/icons/com.burbn.instagram.png",
"iconURL": "https://raw.githubusercontent.com/owo-network/Repo/main/icons/com.burbn.instagram.png"
},
{
"name": "WeChat",
"realBundleID": "com.tencent.xin",
"bundleID": "com.tencent.xin",
"bundleIdentifier": "com.tencent.xin",
"version": "8.0.57",
"versionDate": "2025-04-15",
"fullDate": "20250415162234",
"size": 330164130,
"down": "https://github.com/OwO-Network/Repo/releases/download/2025-04-15/WeChat_8.0.57_PKC_0.7.3_MiYou_3.8.3_XNSP_2.2.5_Push_%40repo.owo.network.ipa",
"downloadURL": "https://github.com/OwO-Network/Repo/releases/download/2025-04-15/WeChat_8.0.57_PKC_0.7.3_MiYou_3.8.3_XNSP_2.2.5_Push_%40repo.owo.network.ipa",
"developerName": "",
"localizedDescription": "Injected with PKC 0.7.3 MiYou 3.8.3 XNSP 2.2.5 Push",
"icon": "https://raw.githubusercontent.com/owo-network/Repo/main/icons/com.tencent.xin.png",
"iconURL": "https://raw.githubusercontent.com/owo-network/Repo/main/icons/com.tencent.xin.png"
},
{
"name": "WeChat",
"realBundleID": "com.tencent.xin",
"bundleID": "com.tencent.xin",
"bundleIdentifier": "com.tencent.xin",
"version": "8.0.58",
"versionDate": "2025-04-15",
"fullDate": "20250415160406",
"size": 331907241,
"down": "https://github.com/OwO-Network/Repo/releases/download/2025-04-15/WeChat_8.0.58_PKC_0.7.3_MiYou_3.8.3_XNSP_2.2.5_Push_%40repo.owo.network.ipa",
"downloadURL": "https://github.com/OwO-Network/Repo/releases/download/2025-04-15/WeChat_8.0.58_PKC_0.7.3_MiYou_3.8.3_XNSP_2.2.5_Push_%40repo.owo.network.ipa",
"developerName": "",
"localizedDescription": "Injected with PKC 0.7.3 MiYou 3.8.3 XNSP 2.2.5 Push",
"icon": "https://raw.githubusercontent.com/owo-network/Repo/main/icons/com.tencent.xin.png",
"iconURL": "https://raw.githubusercontent.com/owo-network/Repo/main/icons/com.tencent.xin.png"
},
{
"name": "Feather",
"realBundleID": "kh.crysalis.feather",
"bundleID": "kh.crysalis.feather",
"bundleIdentifier": "kh.crysalis.feather",
"version": "1.4.1",
"versionDate": "2025-04-11",
"fullDate": "20250411021614",
"size": 9746714,
"down": "https://github.com/OwO-Network/Repo/releases/download/2025-04-10/Feather_1.4.1_Fixed_%40repo.owo.network.ipa",
"downloadURL": "https://github.com/OwO-Network/Repo/releases/download/2025-04-10/Feather_1.4.1_Fixed_%40repo.owo.network.ipa",
"developerName": "",
"localizedDescription": "Injected with Fixed",
"icon": "https://raw.githubusercontent.com/owo-network/Repo/main/icons/kh.crysalis.feather.png",
"iconURL": "https://raw.githubusercontent.com/owo-network/Repo/main/icons/kh.crysalis.feather.png"
},
{
"name": "Instagram",
"realBundleID": "com.burbn.instagram",
"bundleID": "com.burbn.instagram",
"bundleIdentifier": "com.burbn.instagram",
"version": "374.1.10",
"versionDate": "2025-04-10",
"fullDate": "20250410204648",
"size": 215291319,
"down": "https://github.com/OwO-Network/Repo/releases/download/2025-04-10/Instagram_374.1.10_Regram_1.0-b26_%40repo.owo.network.ipa",
"downloadURL": "https://github.com/OwO-Network/Repo/releases/download/2025-04-10/Instagram_374.1.10_Regram_1.0-b26_%40repo.owo.network.ipa",
"developerName": "",
"localizedDescription": "Injected with Regram 1.0-b26",
"icon": "https://raw.githubusercontent.com/owo-network/Repo/main/icons/com.burbn.instagram.png",
"iconURL": "https://raw.githubusercontent.com/owo-network/Repo/main/icons/com.burbn.instagram.png"
},
{
"name": "Asspp",
"realBundleID": "wiki.qaq.Asspp",
"bundleID": "wiki.qaq.Asspp",
"bundleIdentifier": "wiki.qaq.Asspp",
"version": "1.2.10",
"versionDate": "2025-04-04",
"fullDate": "20250404180842",
"size": 6728048,
"down": "https://github.com/OwO-Network/Repo/releases/download/2025-04-04/Asspp_1.2.10_Fixed_%40repo.owo.network.ipa",
"downloadURL": "https://github.com/OwO-Network/Repo/releases/download/2025-04-04/Asspp_1.2.10_Fixed_%40repo.owo.network.ipa",
"developerName": "",
"localizedDescription": "Injected with Fixed",
"icon": "https://raw.githubusercontent.com/owo-network/Repo/main/icons/wiki.qaq.Asspp.png",
"iconURL": "https://raw.githubusercontent.com/owo-network/Repo/main/icons/wiki.qaq.Asspp.png"
},
{
"name": "Instagram",
"realBundleID": "com.burbn.instagram",
"bundleID": "com.burbn.instagram",
"bundleIdentifier": "com.burbn.instagram",
"version": "374.1.10",
"versionDate": "2025-04-04",
"fullDate": "20250404170702",
"size": 215291765,
"down": "https://github.com/OwO-Network/Repo/releases/download/2025-04-04/Instagram_374.1.10_Regram_1.0-b25_%40repo.owo.network.ipa",
"downloadURL": "https://github.com/OwO-Network/Repo/releases/download/2025-04-04/Instagram_374.1.10_Regram_1.0-b25_%40repo.owo.network.ipa",
"developerName": "",
"localizedDescription": "Injected with Regram 1.0-b25",
"icon": "https://raw.githubusercontent.com/owo-network/Repo/main/icons/com.burbn.instagram.png",
"iconURL": "https://raw.githubusercontent.com/owo-network/Repo/main/icons/com.burbn.instagram.png"
},
{
"name": "WeChat",
"realBundleID": "com.tencent.xin",
"bundleID": "com.tencent.xin",
"bundleIdentifier": "com.tencent.xin",
"version": "8.0.57",
"versionDate": "2025-04-04",
"fullDate": "20250404170642",
"size": 330143625,
"down": "https://github.com/OwO-Network/Repo/releases/download/2025-04-04/WeChat_8.0.57_PKC_0.7.1_MiYou_3.8.3_XNSP_2.2.5_Push_%40repo.owo.network.ipa",
"downloadURL": "https://github.com/OwO-Network/Repo/releases/download/2025-04-04/WeChat_8.0.57_PKC_0.7.1_MiYou_3.8.3_XNSP_2.2.5_Push_%40repo.owo.network.ipa",
"developerName": "",
"localizedDescription": "Injected with PKC 0.7.1 MiYou 3.8.3 XNSP 2.2.5 Push",
"icon": "https://raw.githubusercontent.com/owo-network/Repo/main/icons/com.tencent.xin.png",
"iconURL": "https://raw.githubusercontent.com/owo-network/Repo/main/icons/com.tencent.xin.png"
},
{
"name": "WeChat",
"realBundleID": "com.tencent.xin",
"bundleID": "com.tencent.xin",
"bundleIdentifier": "com.tencent.xin",
"version": "8.0.57",
"versionDate": "2025-03-21",
"fullDate": "20250321114834",
"size": 330647774,
"down": "https://github.com/OwO-Network/Repo/releases/download/2025-03-21/WeChat_8.0.57_PKC_0.7.0_MiYou_3.8.3_XNSP_2.2.5_Push_%40repo.owo.network.ipa",
"downloadURL": "https://github.com/OwO-Network/Repo/releases/download/2025-03-21/WeChat_8.0.57_PKC_0.7.0_MiYou_3.8.3_XNSP_2.2.5_Push_%40repo.owo.network.ipa",
"developerName": "",
"localizedDescription": "Injected with PKC 0.7.0 MiYou 3.8.3 XNSP 2.2.5 Push",
"icon": "https://raw.githubusercontent.com/owo-network/Repo/main/icons/com.tencent.xin.png",
"iconURL": "https://raw.githubusercontent.com/owo-network/Repo/main/icons/com.tencent.xin.png"
},
{
"name": "WeChat",
"realBundleID": "com.tencent.xin",
"bundleID": "com.tencent.xin",
"bundleIdentifier": "com.tencent.xin",
"version": "8.0.57",
"versionDate": "2025-03-19",
"fullDate": "20250319215250",
"size": 330540610,
"down": "https://github.com/OwO-Network/Repo/releases/download/2023-03-19/WeChat_8.0.57_PKC_0.7.0_MiYou_3.8.2_XNSP_2.2.5_Push_%40repo.owo.network.ipa",
"downloadURL": "https://github.com/OwO-Network/Repo/releases/download/2023-03-19/WeChat_8.0.57_PKC_0.7.0_MiYou_3.8.2_XNSP_2.2.5_Push_%40repo.owo.network.ipa",
"developerName": "",
"localizedDescription": "Injected with PKC 0.7.0 MiYou 3.8.2 XNSP 2.2.5 Push",
"icon": "https://raw.githubusercontent.com/owo-network/Repo/main/icons/com.tencent.xin.png",
"iconURL": "https://raw.githubusercontent.com/owo-network/Repo/main/icons/com.tencent.xin.png"
},
{
"name": "WeChat",
"realBundleID": "com.tencent.xin",
"bundleID": "com.tencent.xin",
"bundleIdentifier": "com.tencent.xin",
"version": "8.0.57",
"versionDate": "2025-03-18",
"fullDate": "20250318190635",
"size": 330543930,
"down": "https://github.com/OwO-Network/Repo/releases/download/2025-03-18/WeChat_8.0.57_PKC_0.7.0_MiYou_3.8.1_XNSP_2.2.5_Push_%40repo.owo.network.ipa",
"downloadURL": "https://github.com/OwO-Network/Repo/releases/download/2025-03-18/WeChat_8.0.57_PKC_0.7.0_MiYou_3.8.1_XNSP_2.2.5_Push_%40repo.owo.network.ipa",
"developerName": "",
"localizedDescription": "Injected with PKC 0.7.0 MiYou 3.8.1 XNSP 2.2.5 Push",
"icon": "https://raw.githubusercontent.com/owo-network/Repo/main/icons/com.tencent.xin.png",
"iconURL": "https://raw.githubusercontent.com/owo-network/Repo/main/icons/com.tencent.xin.png"
},
{
"name": "WeChat",
"realBundleID": "com.tencent.xin",
"bundleID": "com.tencent.xin",
"bundleIdentifier": "com.tencent.xin",
"version": "8.0.56",
"versionDate": "2025-03-15",
"fullDate": "20250315203757",
"size": 333994012,
"down": "https://github.com/OwO-Network/Repo/releases/download/2025-03-16/WeChat_8.0.56_PKC_0.6.8_MiYou_3.8.1_XNSP_2.2.5_Push_%40repo.owo.network.ipa",
"downloadURL": "https://github.com/OwO-Network/Repo/releases/download/2025-03-16/WeChat_8.0.56_PKC_0.6.8_MiYou_3.8.1_XNSP_2.2.5_Push_%40repo.owo.network.ipa",