forked from swaggyP36000/TrollStore-IPAs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapps.json
12085 lines (12085 loc) · 586 KB
/
apps.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
{
"name": "swaggyP36000 IPA Library",
"identifier": "xyz.hieuddo.ipalibrary",
"sourceURL": "https://raw.githubusercontent.com/swaggyP36000/TrollStore-IPAs/main/apps.json",
"apps": [
{
"name": "BHTikTokPlus",
"bundleIdentifier": "com.zhiliaoapp.musically",
"version": "31.5.0-2.2.1",
"versionDate": "2023-10-09",
"size": 233187621,
"downloadURL": "https://github.com/swaggyP36000/TrollStore-IPAs/releases/download/10-09-2023/BHTikTokPlus-31.5.0-2.2.1.ipa",
"developerName": "",
"localizedDescription": "",
"iconURL": "https://raw.githubusercontent.com/swaggyP36000/TrollStore-IPAs/main/icons/com.zhiliaoapp.musically.png"
},
{
"name": "FacebookWolf",
"bundleIdentifier": "com.facebook.Facebook",
"version": "433.1",
"versionDate": "2023-10-09",
"size": 148727038,
"downloadURL": "https://github.com/swaggyP36000/TrollStore-IPAs/releases/download/10-09-2023/FacebookWolf-433.1.ipa",
"developerName": "",
"localizedDescription": "",
"iconURL": "https://raw.githubusercontent.com/swaggyP36000/TrollStore-IPAs/main/icons/com.facebook.Facebook.png"
},
{
"name": "Nicegram",
"bundleIdentifier": "app.nicegram",
"version": "1.4.1",
"versionDate": "2023-10-09",
"size": 103452375,
"downloadURL": "https://github.com/swaggyP36000/TrollStore-IPAs/releases/download/10-09-2023/Nicegram-1.4.1.ipa",
"developerName": "",
"localizedDescription": "",
"iconURL": "https://raw.githubusercontent.com/swaggyP36000/TrollStore-IPAs/main/icons/app.nicegram.png"
},
{
"name": "PhotoshopExpress",
"bundleIdentifier": "com.adobe.PSMobile",
"version": "23.38.1",
"versionDate": "2023-10-09",
"size": 130238077,
"downloadURL": "https://github.com/swaggyP36000/TrollStore-IPAs/releases/download/10-09-2023/PhotoshopExpress-23.38.1.ipa",
"developerName": "",
"localizedDescription": "",
"iconURL": "https://raw.githubusercontent.com/swaggyP36000/TrollStore-IPAs/main/icons/com.adobe.PSMobile.png"
},
{
"name": "TwitchPlus",
"bundleIdentifier": "tv.twitch",
"version": "16.5",
"versionDate": "2023-10-09",
"size": 57293954,
"downloadURL": "https://github.com/swaggyP36000/TrollStore-IPAs/releases/download/10-09-2023/TwitchPlus-16.5.ipa",
"developerName": "",
"localizedDescription": "",
"iconURL": "https://raw.githubusercontent.com/swaggyP36000/TrollStore-IPAs/main/icons/tv.twitch.png"
},
{
"name": "uYouPlusExtra",
"bundleIdentifier": "com.google.ios.youtube",
"version": "18.40.1",
"versionDate": "2023-10-09",
"size": 126797323,
"downloadURL": "https://github.com/swaggyP36000/TrollStore-IPAs/releases/download/10-09-2023/uYouPlusExtra-18.40.1.ipa",
"developerName": "",
"localizedDescription": "",
"iconURL": "https://raw.githubusercontent.com/swaggyP36000/TrollStore-IPAs/main/icons/com.google.ios.youtube.png"
},
{
"name": "AIChatSmith",
"bundleIdentifier": "co.vulcanlabs.moodtracker",
"version": "6.2.4",
"versionDate": "2023-10-07",
"size": 85820013,
"downloadURL": "https://github.com/swaggyP36000/TrollStore-IPAs/releases/download/10-07-2023/AIChatSmith-6.2.4.ipa",
"developerName": "",
"localizedDescription": "",
"iconURL": "https://raw.githubusercontent.com/swaggyP36000/TrollStore-IPAs/main/icons/co.vulcanlabs.moodtracker.png"
},
{
"name": "BHX",
"bundleIdentifier": "com.atebits.Tweetie2",
"version": "10.9.1-4.0",
"versionDate": "2023-10-07",
"size": 92453724,
"downloadURL": "https://github.com/swaggyP36000/TrollStore-IPAs/releases/download/10-07-2023/BHX-10.9.1-4.0.ipa",
"developerName": "",
"localizedDescription": "",
"iconURL": "https://raw.githubusercontent.com/swaggyP36000/TrollStore-IPAs/main/icons/com.atebits.Tweetie2.png"
},
{
"name": "InstaRocketBH",
"bundleIdentifier": "com.burbn.instagram",
"version": "303.3-3.8.15",
"versionDate": "2023-10-07",
"size": 130819181,
"downloadURL": "https://github.com/swaggyP36000/TrollStore-IPAs/releases/download/10-07-2023/InstaRocketBH-303.3-3.8.15.ipa",
"developerName": "",
"localizedDescription": "",
"iconURL": "https://raw.githubusercontent.com/swaggyP36000/TrollStore-IPAs/main/icons/com.burbn.instagram.png"
},
{
"name": "BeRealBea",
"bundleIdentifier": "AlexisBarreyat.BeReal",
"version": "1.3.2-1.14.0",
"versionDate": "2023-10-05",
"size": 39714501,
"downloadURL": "https://github.com/swaggyP36000/TrollStore-IPAs/releases/download/10-05-2023/BeRealBea-1.3.2-1.14.0.ipa",
"developerName": "",
"localizedDescription": "",
"iconURL": "https://raw.githubusercontent.com/swaggyP36000/TrollStore-IPAs/main/icons/AlexisBarreyat.BeReal.png"
},
{
"name": "InstaRocketCracked",
"bundleIdentifier": "com.burbn.instagram",
"version": "303.3-3.8.15",
"versionDate": "2023-10-05",
"size": 138342775,
"downloadURL": "https://github.com/swaggyP36000/TrollStore-IPAs/releases/download/10-05-2023/InstaRocketCracked-303.3-3.8.15.ipa",
"developerName": "",
"localizedDescription": "",
"iconURL": "https://raw.githubusercontent.com/swaggyP36000/TrollStore-IPAs/main/icons/com.burbn.instagram.png"
},
{
"name": "PicsartPlusPlus",
"bundleIdentifier": "com.picsart.studio",
"version": "23.3.3",
"versionDate": "2023-10-05",
"size": 96172924,
"downloadURL": "https://github.com/swaggyP36000/TrollStore-IPAs/releases/download/10-05-2023/PicsartPlusPlus-23.3.3.ipa",
"developerName": "",
"localizedDescription": "",
"iconURL": "https://raw.githubusercontent.com/swaggyP36000/TrollStore-IPAs/main/icons/com.picsart.studio.png"
},
{
"name": "RedditPlus",
"bundleIdentifier": "com.reddit.Reddit",
"version": "2023.39.0",
"versionDate": "2023-10-05",
"size": 127043823,
"downloadURL": "https://github.com/swaggyP36000/TrollStore-IPAs/releases/download/10-05-2023/RedditPlus-2023.39.0.ipa",
"developerName": "",
"localizedDescription": "",
"iconURL": "https://raw.githubusercontent.com/swaggyP36000/TrollStore-IPAs/main/icons/com.reddit.Reddit.png"
},
{
"name": "SpotifyDeluxe",
"bundleIdentifier": "com.spotify.client",
"version": "8.8.76",
"versionDate": "2023-10-05",
"size": 67634566,
"downloadURL": "https://github.com/swaggyP36000/TrollStore-IPAs/releases/download/10-05-2023/SpotifyDeluxe-8.8.76.ipa",
"developerName": "",
"localizedDescription": "",
"iconURL": "https://raw.githubusercontent.com/swaggyP36000/TrollStore-IPAs/main/icons/com.spotify.client.png"
},
{
"name": "Spotilife",
"bundleIdentifier": "com.spotify.client",
"version": "8.8.76",
"versionDate": "2023-10-05",
"size": 61412869,
"downloadURL": "https://github.com/swaggyP36000/TrollStore-IPAs/releases/download/10-05-2023/Spotilife-8.8.76.ipa",
"developerName": "",
"localizedDescription": "",
"iconURL": "https://raw.githubusercontent.com/swaggyP36000/TrollStore-IPAs/main/icons/com.spotify.client.png"
},
{
"name": "YouTubeOLED",
"bundleIdentifier": "com.google.ios.youtube",
"version": "18.39.1",
"versionDate": "2023-10-05",
"size": 115097893,
"downloadURL": "https://github.com/swaggyP36000/TrollStore-IPAs/releases/download/10-05-2023/YouTubeOLED-18.39.1.ipa",
"developerName": "",
"localizedDescription": "",
"iconURL": "https://raw.githubusercontent.com/swaggyP36000/TrollStore-IPAs/main/icons/com.google.ios.youtube.png"
},
{
"name": "YTMusicUltimate",
"bundleIdentifier": "com.google.ios.youtubemusic",
"version": "1.5.2-6.22.2",
"versionDate": "2023-10-05",
"size": 64829488,
"downloadURL": "https://github.com/swaggyP36000/TrollStore-IPAs/releases/download/10-05-2023/YTMusicUltimate-1.5.2-6.22.2.ipa",
"developerName": "",
"localizedDescription": "",
"iconURL": "https://raw.githubusercontent.com/swaggyP36000/TrollStore-IPAs/main/icons/com.google.ios.youtubemusic.png"
},
{
"name": "BHTikTokPlus",
"bundleIdentifier": "com.zhiliaoapp.musically",
"version": "31.4.0-2.2.1",
"versionDate": "2023-10-03",
"size": 233623072,
"downloadURL": "https://github.com/swaggyP36000/TrollStore-IPAs/releases/download/10-03-2023/BHTikTokPlus-31.4.0-2.2.1.ipa",
"developerName": "",
"localizedDescription": "",
"iconURL": "https://raw.githubusercontent.com/swaggyP36000/TrollStore-IPAs/main/icons/com.zhiliaoapp.musically.png"
},
{
"name": "InstaRocketBH",
"bundleIdentifier": "com.burbn.instagram",
"version": "303.1-3.8.15",
"versionDate": "2023-10-03",
"size": 130928882,
"downloadURL": "https://github.com/swaggyP36000/TrollStore-IPAs/releases/download/10-03-2023/InstaRocketBH-303.1-3.8.15.ipa",
"developerName": "",
"localizedDescription": "",
"iconURL": "https://raw.githubusercontent.com/swaggyP36000/TrollStore-IPAs/main/icons/com.burbn.instagram.png"
},
{
"name": "InstaRocketCracked",
"bundleIdentifier": "com.burbn.instagram",
"version": "303.1-3.8.15",
"versionDate": "2023-10-03",
"size": 138461786,
"downloadURL": "https://github.com/swaggyP36000/TrollStore-IPAs/releases/download/10-03-2023/InstaRocketCracked-303.1-3.8.15.ipa",
"developerName": "",
"localizedDescription": "",
"iconURL": "https://raw.githubusercontent.com/swaggyP36000/TrollStore-IPAs/main/icons/com.burbn.instagram.png"
},
{
"name": "MeituPlusPlus",
"bundleIdentifier": "com.meitu.mtxx",
"version": "9.9.81",
"versionDate": "2023-10-03",
"size": 227689265,
"downloadURL": "https://github.com/swaggyP36000/TrollStore-IPAs/releases/download/10-03-2023/MeituPlusPlus-9.9.81.ipa",
"developerName": "",
"localizedDescription": "",
"iconURL": "https://raw.githubusercontent.com/swaggyP36000/TrollStore-IPAs/main/icons/com.meitu.mtxx.png"
},
{
"name": "SnapchatFalcon",
"bundleIdentifier": "com.toyopagroup.picaboo",
"version": "12.54",
"versionDate": "2023-10-03",
"size": 117756308,
"downloadURL": "https://github.com/swaggyP36000/TrollStore-IPAs/releases/download/10-03-2023/SnapchatFalcon-12.54.ipa",
"developerName": "",
"localizedDescription": "",
"iconURL": "https://raw.githubusercontent.com/swaggyP36000/TrollStore-IPAs/main/icons/com.toyopagroup.picaboo.png"
},
{
"name": "Snapchatiota",
"bundleIdentifier": "com.toyopagroup.picaboo",
"version": "12.49-3.0.4",
"versionDate": "2023-10-03",
"size": 100404025,
"downloadURL": "https://github.com/swaggyP36000/TrollStore-IPAs/releases/download/10-03-2023/Snapchatiota-12.49-3.0.4.ipa",
"developerName": "",
"localizedDescription": "",
"iconURL": "https://raw.githubusercontent.com/swaggyP36000/TrollStore-IPAs/main/icons/com.toyopagroup.picaboo.png"
},
{
"name": "SnapchatWicked",
"bundleIdentifier": "com.toyopagroup.picaboo",
"version": "12.54",
"versionDate": "2023-10-03",
"size": 106778136,
"downloadURL": "https://github.com/swaggyP36000/TrollStore-IPAs/releases/download/10-03-2023/SnapchatWicked-12.54.ipa",
"developerName": "",
"localizedDescription": "",
"iconURL": "https://raw.githubusercontent.com/swaggyP36000/TrollStore-IPAs/main/icons/com.toyopagroup.picaboo.png"
},
{
"name": "uYouPlusExtra",
"bundleIdentifier": "com.google.ios.youtube",
"version": "18.39.1",
"versionDate": "2023-10-03",
"size": 125970406,
"downloadURL": "https://github.com/swaggyP36000/TrollStore-IPAs/releases/download/10-03-2023/uYouPlusExtra-18.39.1.ipa",
"developerName": "",
"localizedDescription": "",
"iconURL": "https://raw.githubusercontent.com/swaggyP36000/TrollStore-IPAs/main/icons/com.google.ios.youtube.png"
},
{
"name": "BearPro",
"bundleIdentifier": "net.shinyfrog.bear-iOS",
"version": "2.0.14",
"versionDate": "2023-10-01",
"size": 27851640,
"downloadURL": "https://github.com/swaggyP36000/TrollStore-IPAs/releases/download/10-01-2023/BearPro-2.0.14.ipa",
"developerName": "",
"localizedDescription": "",
"iconURL": "https://raw.githubusercontent.com/swaggyP36000/TrollStore-IPAs/main/icons/net.shinyfrog.bear-iOS.png"
},
{
"name": "CarrotWeatherUltra",
"bundleIdentifier": "com.grailr.CARROTweather",
"version": "5.12.3",
"versionDate": "2023-10-01",
"size": 180569316,
"downloadURL": "https://github.com/swaggyP36000/TrollStore-IPAs/releases/download/10-01-2023/CarrotWeatherUltra-5.12.3.ipa",
"developerName": "",
"localizedDescription": "",
"iconURL": "https://raw.githubusercontent.com/swaggyP36000/TrollStore-IPAs/main/icons/com.grailr.CARROTweather.png"
},
{
"name": "InstaRocketBH",
"bundleIdentifier": "com.burbn.instagram",
"version": "303.1-3.8.14",
"versionDate": "2023-10-01",
"size": 133472984,
"downloadURL": "https://github.com/swaggyP36000/TrollStore-IPAs/releases/download/10-01-2023/InstaRocketBH-303.1-3.8.14.ipa",
"developerName": "",
"localizedDescription": "",
"iconURL": "https://raw.githubusercontent.com/swaggyP36000/TrollStore-IPAs/main/icons/com.burbn.instagram.png"
},
{
"name": "InstaRocketCracked",
"bundleIdentifier": "com.burbn.instagram",
"version": "303.1-3.8.14",
"versionDate": "2023-10-01",
"size": 133097927,
"downloadURL": "https://github.com/swaggyP36000/TrollStore-IPAs/releases/download/10-01-2023/InstaRocketCracked-303.1-3.8.14.ipa",
"developerName": "",
"localizedDescription": "",
"iconURL": "https://raw.githubusercontent.com/swaggyP36000/TrollStore-IPAs/main/icons/com.burbn.instagram.png"
},
{
"name": "TikTokLRD",
"bundleIdentifier": "com.zhiliaoapp.musically",
"version": "3.0-31.4.0",
"versionDate": "2023-10-01",
"size": 241104868,
"downloadURL": "https://github.com/swaggyP36000/TrollStore-IPAs/releases/download/10-01-2023/TikTokLRD-3.0-31.4.0.ipa",
"developerName": "",
"localizedDescription": "",
"iconURL": "https://raw.githubusercontent.com/swaggyP36000/TrollStore-IPAs/main/icons/com.zhiliaoapp.musically.png"
},
{
"name": "TikTokLRDCracked",
"bundleIdentifier": "com.zhiliaoapp.musically",
"version": "2.5-31.3.0",
"versionDate": "2023-10-01",
"size": 234888233,
"downloadURL": "https://github.com/swaggyP36000/TrollStore-IPAs/releases/download/10-01-2023/TikTokLRDCracked-2.5-31.3.0.ipa",
"developerName": "",
"localizedDescription": "",
"iconURL": "https://raw.githubusercontent.com/swaggyP36000/TrollStore-IPAs/main/icons/com.zhiliaoapp.musically.png"
},
{
"name": "BHX",
"bundleIdentifier": "com.atebits.Tweetie2",
"version": "10.8-4.0",
"versionDate": "2023-09-30",
"size": 92371935,
"downloadURL": "https://github.com/swaggyP36000/TrollStore-IPAs/releases/download/09-30-2023/BHX-10.8-4.0.ipa",
"developerName": "",
"localizedDescription": "",
"iconURL": "https://raw.githubusercontent.com/swaggyP36000/TrollStore-IPAs/main/icons/com.atebits.Tweetie2.png"
},
{
"name": "DuolingoPremium",
"bundleIdentifier": "com.duolingo.DuolingoMobile",
"version": "6.233.0",
"versionDate": "2023-09-30",
"size": 126825233,
"downloadURL": "https://github.com/swaggyP36000/TrollStore-IPAs/releases/download/09-30-2023/DuolingoPremium-6.233.0.ipa",
"developerName": "",
"localizedDescription": "",
"iconURL": "https://raw.githubusercontent.com/swaggyP36000/TrollStore-IPAs/main/icons/com.duolingo.DuolingoMobile.png"
},
{
"name": "InstaRocketBH",
"bundleIdentifier": "com.burbn.instagram",
"version": "302.0-3.8.14",
"versionDate": "2023-09-30",
"size": 129161251,
"downloadURL": "https://github.com/swaggyP36000/TrollStore-IPAs/releases/download/09-30-2023/InstaRocketBH-302.0-3.8.14.ipa",
"developerName": "",
"localizedDescription": "",
"iconURL": "https://raw.githubusercontent.com/swaggyP36000/TrollStore-IPAs/main/icons/com.burbn.instagram.png"
},
{
"name": "InstaRocketCracked",
"bundleIdentifier": "com.burbn.instagram",
"version": "302.0-3.8.14",
"versionDate": "2023-09-30",
"size": 128786222,
"downloadURL": "https://github.com/swaggyP36000/TrollStore-IPAs/releases/download/09-30-2023/InstaRocketCracked-302.0-3.8.14.ipa",
"developerName": "",
"localizedDescription": "",
"iconURL": "https://raw.githubusercontent.com/swaggyP36000/TrollStore-IPAs/main/icons/com.burbn.instagram.png"
},
{
"name": "MemrisePremium",
"bundleIdentifier": "com.memrise.ios.memrisecompanion",
"version": "2023.9.15",
"versionDate": "2023-09-30",
"size": 142729185,
"downloadURL": "https://github.com/swaggyP36000/TrollStore-IPAs/releases/download/09-30-2023/MemrisePremium-2023.9.15.ipa",
"developerName": "",
"localizedDescription": "",
"iconURL": "https://raw.githubusercontent.com/swaggyP36000/TrollStore-IPAs/main/icons/com.memrise.ios.memrisecompanion.png"
},
{
"name": "SnapchatFalcon",
"bundleIdentifier": "com.toyopagroup.picaboo",
"version": "12.53.1",
"versionDate": "2023-09-30",
"size": 115406628,
"downloadURL": "https://github.com/swaggyP36000/TrollStore-IPAs/releases/download/09-30-2023/SnapchatFalcon-12.53.1.ipa",
"developerName": "",
"localizedDescription": "",
"iconURL": "https://raw.githubusercontent.com/swaggyP36000/TrollStore-IPAs/main/icons/com.toyopagroup.picaboo.png"
},
{
"name": "Watusi3",
"bundleIdentifier": "net.whatsapp.WhatsApp",
"version": "23.19.86-1.2.4-3.4.4",
"versionDate": "2023-09-30",
"size": 99212272,
"downloadURL": "https://github.com/swaggyP36000/TrollStore-IPAs/releases/download/09-30-2023/Watusi3-23.19.86-1.2.4-3.4.4.ipa",
"developerName": "",
"localizedDescription": "",
"iconURL": "https://raw.githubusercontent.com/swaggyP36000/TrollStore-IPAs/main/icons/net.whatsapp.WhatsApp.png"
},
{
"name": "AIChatSmith",
"bundleIdentifier": "co.vulcanlabs.moodtracker",
"version": "6.2.2",
"versionDate": "2023-09-28",
"size": 58152963,
"downloadURL": "https://github.com/swaggyP36000/TrollStore-IPAs/releases/download/09-28-2023/AIChatSmith-6.2.2.ipa",
"developerName": "",
"localizedDescription": "",
"iconURL": "https://raw.githubusercontent.com/swaggyP36000/TrollStore-IPAs/main/icons/co.vulcanlabs.moodtracker.png"
},
{
"name": "FacebookWolf",
"bundleIdentifier": "com.facebook.Facebook",
"version": "433.1",
"versionDate": "2023-09-28",
"size": 147521226,
"downloadURL": "https://github.com/swaggyP36000/TrollStore-IPAs/releases/download/09-28-2023/FacebookWolf-433.1.ipa",
"developerName": "",
"localizedDescription": "",
"iconURL": "https://raw.githubusercontent.com/swaggyP36000/TrollStore-IPAs/main/icons/com.facebook.Facebook.png"
},
{
"name": "Snapchatiota",
"bundleIdentifier": "com.toyopagroup.picaboo",
"version": "12.49.0",
"versionDate": "2023-09-28",
"size": 100454729,
"downloadURL": "https://github.com/swaggyP36000/TrollStore-IPAs/releases/download/09-28-2023/Snapchatiota-12.49.0.ipa",
"developerName": "",
"localizedDescription": "",
"iconURL": "https://raw.githubusercontent.com/swaggyP36000/TrollStore-IPAs/main/icons/com.toyopagroup.picaboo.png"
},
{
"name": "SnapchatWicked",
"bundleIdentifier": "com.toyopagroup.picaboo",
"version": "12.53.1",
"versionDate": "2023-09-28",
"size": 106337033,
"downloadURL": "https://github.com/swaggyP36000/TrollStore-IPAs/releases/download/09-28-2023/SnapchatWicked-12.53.1.ipa",
"developerName": "",
"localizedDescription": "",
"iconURL": "https://raw.githubusercontent.com/swaggyP36000/TrollStore-IPAs/main/icons/com.toyopagroup.picaboo.png"
},
{
"name": "SpotifyDeluxe",
"bundleIdentifier": "com.spotify.client",
"version": "8.8.75",
"versionDate": "2023-09-28",
"size": 67029587,
"downloadURL": "https://github.com/swaggyP36000/TrollStore-IPAs/releases/download/09-28-2023/SpotifyDeluxe-8.8.75.ipa",
"developerName": "",
"localizedDescription": "",
"iconURL": "https://raw.githubusercontent.com/swaggyP36000/TrollStore-IPAs/main/icons/com.spotify.client.png"
},
{
"name": "Spotilife",
"bundleIdentifier": "com.spotify.client",
"version": "8.8.74",
"versionDate": "2023-09-28",
"size": 61057682,
"downloadURL": "https://github.com/swaggyP36000/TrollStore-IPAs/releases/download/09-28-2023/Spotilife-8.8.74.ipa",
"developerName": "",
"localizedDescription": "",
"iconURL": "https://raw.githubusercontent.com/swaggyP36000/TrollStore-IPAs/main/icons/com.spotify.client.png"
},
{
"name": "BeRealBea",
"bundleIdentifier": "AlexisBarreyat.BeReal",
"version": "1.3.2-1.13.0",
"versionDate": "2023-09-27",
"size": 53570811,
"downloadURL": "https://github.com/swaggyP36000/TrollStore-IPAs/releases/download/09-27-2023/BeRealBea-1.3.2-1.13.0.ipa",
"developerName": "",
"localizedDescription": "",
"iconURL": "https://raw.githubusercontent.com/swaggyP36000/TrollStore-IPAs/main/icons/AlexisBarreyat.BeReal.png"
},
{
"name": "CarrotWeatherUltra",
"bundleIdentifier": "com.grailr.CARROTweather",
"version": "5.12.2",
"versionDate": "2023-09-27",
"size": 180561153,
"downloadURL": "https://github.com/swaggyP36000/TrollStore-IPAs/releases/download/09-27-2023/CarrotWeatherUltra-5.12.2.ipa",
"developerName": "",
"localizedDescription": "",
"iconURL": "https://raw.githubusercontent.com/swaggyP36000/TrollStore-IPAs/main/icons/com.grailr.CARROTweather.png"
},
{
"name": "InfusePro",
"bundleIdentifier": "com.firecore.infuse",
"version": "7.6.1",
"versionDate": "2023-09-27",
"size": 43213714,
"downloadURL": "https://github.com/swaggyP36000/TrollStore-IPAs/releases/download/09-27-2023/InfusePro-7.6.1.ipa",
"developerName": "",
"localizedDescription": "",
"iconURL": "https://raw.githubusercontent.com/swaggyP36000/TrollStore-IPAs/main/icons/com.firecore.infuse.png"
},
{
"name": "InstaRocketBH",
"bundleIdentifier": "com.burbn.instagram",
"version": "302.0-3.8.13",
"versionDate": "2023-09-27",
"size": 132567937,
"downloadURL": "https://github.com/swaggyP36000/TrollStore-IPAs/releases/download/09-27-2023/InstaRocketBH-302.0-3.8.13.ipa",
"developerName": "",
"localizedDescription": "",
"iconURL": "https://raw.githubusercontent.com/swaggyP36000/TrollStore-IPAs/main/icons/com.burbn.instagram.png"
},
{
"name": "InstaRocketCracked",
"bundleIdentifier": "com.burbn.instagram",
"version": "302.0-3.8.13",
"versionDate": "2023-09-27",
"size": 129486813,
"downloadURL": "https://github.com/swaggyP36000/TrollStore-IPAs/releases/download/09-27-2023/InstaRocketCracked-302.0-3.8.13.ipa",
"developerName": "",
"localizedDescription": "",
"iconURL": "https://raw.githubusercontent.com/swaggyP36000/TrollStore-IPAs/main/icons/com.burbn.instagram.png"
},
{
"name": "PhotomathPlus",
"bundleIdentifier": "com.microblink.PhotoMath",
"version": "8.30.0",
"versionDate": "2023-09-27",
"size": 10877296,
"downloadURL": "https://github.com/swaggyP36000/TrollStore-IPAs/releases/download/09-27-2023/PhotomathPlus-8.30.0.ipa",
"developerName": "",
"localizedDescription": "",
"iconURL": "https://raw.githubusercontent.com/swaggyP36000/TrollStore-IPAs/main/icons/com.microblink.PhotoMath.png"
},
{
"name": "RedditPlus",
"bundleIdentifier": "com.reddit.Reddit",
"version": "2023.38.0",
"versionDate": "2023-09-27",
"size": 125711567,
"downloadURL": "https://github.com/swaggyP36000/TrollStore-IPAs/releases/download/09-27-2023/RedditPlus-2023.38.0.ipa",
"developerName": "",
"localizedDescription": "",
"iconURL": "https://raw.githubusercontent.com/swaggyP36000/TrollStore-IPAs/main/icons/com.reddit.Reddit.png"
},
{
"name": "ReminiPro",
"bundleIdentifier": "com.bigwinepot.nwdn.international",
"version": "2.9.79",
"versionDate": "2023-09-27",
"size": 180810446,
"downloadURL": "https://github.com/swaggyP36000/TrollStore-IPAs/releases/download/09-27-2023/ReminiPro-2.9.79.ipa",
"developerName": "",
"localizedDescription": "",
"iconURL": "https://raw.githubusercontent.com/swaggyP36000/TrollStore-IPAs/main/icons/com.bigwinepot.nwdn.international.png"
},
{
"name": "SnapchatFalcon",
"bundleIdentifier": "com.toyopagroup.picaboo",
"version": "12.53",
"versionDate": "2023-09-27",
"size": 117268576,
"downloadURL": "https://github.com/swaggyP36000/TrollStore-IPAs/releases/download/09-27-2023/SnapchatFalcon-12.53.ipa",
"developerName": "",
"localizedDescription": "",
"iconURL": "https://raw.githubusercontent.com/swaggyP36000/TrollStore-IPAs/main/icons/com.toyopagroup.picaboo.png"
},
{
"name": "SpotifyDeluxe",
"bundleIdentifier": "com.spotify.client",
"version": "8.8.74",
"versionDate": "2023-09-27",
"size": 67024847,
"downloadURL": "https://github.com/swaggyP36000/TrollStore-IPAs/releases/download/09-27-2023/SpotifyDeluxe-8.8.74.ipa",
"developerName": "",
"localizedDescription": "",
"iconURL": "https://raw.githubusercontent.com/swaggyP36000/TrollStore-IPAs/main/icons/com.spotify.client.png"
},
{
"name": "TwitchPlus",
"bundleIdentifier": "tv.twitch",
"version": "16.4",
"versionDate": "2023-09-27",
"size": 73502584,
"downloadURL": "https://github.com/swaggyP36000/TrollStore-IPAs/releases/download/09-27-2023/TwitchPlus-16.4.ipa",
"developerName": "",
"localizedDescription": "",
"iconURL": "https://raw.githubusercontent.com/swaggyP36000/TrollStore-IPAs/main/icons/tv.twitch.png"
},
{
"name": "YTMusicUltimate",
"bundleIdentifier": "com.google.ios.youtubemusic",
"version": "1.5.2-6.21.3",
"versionDate": "2023-09-27",
"size": 64717083,
"downloadURL": "https://github.com/swaggyP36000/TrollStore-IPAs/releases/download/09-27-2023/YTMusicUltimate-1.5.2-6.21.3.ipa",
"developerName": "",
"localizedDescription": "",
"iconURL": "https://raw.githubusercontent.com/swaggyP36000/TrollStore-IPAs/main/icons/com.google.ios.youtubemusic.png"
},
{
"name": "uYouPlusExtra",
"bundleIdentifier": "com.google.ios.youtube",
"version": "18.38.2",
"versionDate": "2023-09-25",
"size": 125683291,
"downloadURL": "https://github.com/swaggyP36000/TrollStore-IPAs/releases/download/09-25-2023/uYouPlusExtra-18.38.2.ipa",
"developerName": "",
"localizedDescription": "",
"iconURL": "https://raw.githubusercontent.com/swaggyP36000/TrollStore-IPAs/main/icons/com.google.ios.youtube.png"
},
{
"name": "YouTubeOLED",
"bundleIdentifier": "com.google.ios.youtube",
"version": "18.38.2",
"versionDate": "2023-09-25",
"size": 114674975,
"downloadURL": "https://github.com/swaggyP36000/TrollStore-IPAs/releases/download/09-25-2023/YouTubeOLED-18.38.2.ipa",
"developerName": "",
"localizedDescription": "",
"iconURL": "https://raw.githubusercontent.com/swaggyP36000/TrollStore-IPAs/main/icons/com.google.ios.youtube.png"
},
{
"name": "BlackHole",
"bundleIdentifier": "com.shadow.blackhole1160.ios",
"version": "1.15.9",
"versionDate": "2023-09-23",
"size": 28764405,
"downloadURL": "https://github.com/swaggyP36000/TrollStore-IPAs/releases/download/09-23-2023/BlackHole-1.15.9.ipa",
"developerName": "",
"localizedDescription": "",
"iconURL": "https://raw.githubusercontent.com/swaggyP36000/TrollStore-IPAs/main/icons/com.shadow.blackhole1160.ios.png"
},
{
"name": "Delta",
"bundleIdentifier": "com.rileytestut.Delta.Beta",
"version": "1.4rc",
"versionDate": "2023-09-23",
"size": 46299284,
"downloadURL": "https://github.com/swaggyP36000/TrollStore-IPAs/releases/download/09-23-2023/Delta-1.4rc.ipa",
"developerName": "",
"localizedDescription": "",
"iconURL": "https://raw.githubusercontent.com/swaggyP36000/TrollStore-IPAs/main/icons/com.rileytestut.Delta.Beta.png"
},
{
"name": "EGG3DS",
"bundleIdentifier": "com.xiaoji.wuziqi",
"version": "v2.5.9",
"versionDate": "2023-09-23",
"size": 88945634,
"downloadURL": "https://github.com/swaggyP36000/TrollStore-IPAs/releases/download/09-23-2023/EGG3DS-v2.5.9.ipa",
"developerName": "",
"localizedDescription": "",
"iconURL": "https://raw.githubusercontent.com/swaggyP36000/TrollStore-IPAs/main/icons/com.xiaoji.wuziqi.png"
},
{
"name": "ipogo",
"bundleIdentifier": "com.nianticlabs.pokemongo",
"version": "3.1.1",
"versionDate": "2023-09-23",
"size": 127591654,
"downloadURL": "https://github.com/swaggyP36000/TrollStore-IPAs/releases/download/09-23-2023/ipogo-3.1.1.ipa",
"developerName": "",
"localizedDescription": "",
"iconURL": "https://raw.githubusercontent.com/swaggyP36000/TrollStore-IPAs/main/icons/com.nianticlabs.pokemongo.png"
},
{
"name": "Otraku",
"bundleIdentifier": "com.otraku.app",
"version": "1.2.5",
"versionDate": "2023-09-23",
"size": 9842869,
"downloadURL": "https://github.com/swaggyP36000/TrollStore-IPAs/releases/download/09-23-2023/Otraku-1.2.5.ipa",
"developerName": "",
"localizedDescription": "",
"iconURL": "https://raw.githubusercontent.com/swaggyP36000/TrollStore-IPAs/main/icons/com.otraku.app.png"
},
{
"name": "Rosiecord",
"bundleIdentifier": "com.hammerandchisel.discord",
"version": "197.0",
"versionDate": "2023-09-23",
"size": 139028037,
"downloadURL": "https://github.com/swaggyP36000/TrollStore-IPAs/releases/download/09-23-2023/Rosiecord-197.0.ipa",
"developerName": "",
"localizedDescription": "",
"iconURL": "https://raw.githubusercontent.com/swaggyP36000/TrollStore-IPAs/main/icons/com.hammerandchisel.discord.png"
},
{
"name": "Watusi3",
"bundleIdentifier": "net.whatsapp.WhatsApp",
"version": "23.19.76-1.2.4-3.4.4",
"versionDate": "2023-09-23",
"size": 98950997,
"downloadURL": "https://github.com/swaggyP36000/TrollStore-IPAs/releases/download/09-23-2023/Watusi3-23.19.76-1.2.4-3.4.4.ipa",
"developerName": "",
"localizedDescription": "",
"iconURL": "https://raw.githubusercontent.com/swaggyP36000/TrollStore-IPAs/main/icons/net.whatsapp.WhatsApp.png"
},
{
"name": "BHTikTokPlus",
"bundleIdentifier": "com.zhiliaoapp.musically",
"version": "31.3.0-2.2.1",
"versionDate": "2023-09-21",
"size": 231208792,
"downloadURL": "https://github.com/swaggyP36000/TrollStore-IPAs/releases/download/09-21-2023/BHTikTokPlus-31.3.0-2.2.1.ipa",
"developerName": "",
"localizedDescription": "",
"iconURL": "https://raw.githubusercontent.com/swaggyP36000/TrollStore-IPAs/main/icons/com.zhiliaoapp.musically.png"
},
{
"name": "BHX",
"bundleIdentifier": "com.atebits.Tweetie2",
"version": "10.7-4.0",
"versionDate": "2023-09-21",
"size": 92308848,
"downloadURL": "https://github.com/swaggyP36000/TrollStore-IPAs/releases/download/09-21-2023/BHX-10.7-4.0.ipa",
"developerName": "",
"localizedDescription": "",
"iconURL": "https://raw.githubusercontent.com/swaggyP36000/TrollStore-IPAs/main/icons/com.atebits.Tweetie2.png"
},
{
"name": "InstaRocketBH",
"bundleIdentifier": "com.burbn.instagram",
"version": "301.1-3.8.13",
"versionDate": "2023-09-21",
"size": 128765450,
"downloadURL": "https://github.com/swaggyP36000/TrollStore-IPAs/releases/download/09-21-2023/InstaRocketBH-301.1-3.8.13.ipa",
"developerName": "",
"localizedDescription": "",
"iconURL": "https://raw.githubusercontent.com/swaggyP36000/TrollStore-IPAs/main/icons/com.burbn.instagram.png"
},
{
"name": "InstaRocketCracked",
"bundleIdentifier": "com.burbn.instagram",
"version": "301.1-3.8.13",
"versionDate": "2023-09-21",
"size": 128390619,
"downloadURL": "https://github.com/swaggyP36000/TrollStore-IPAs/releases/download/09-21-2023/InstaRocketCracked-301.1-3.8.13.ipa",
"developerName": "",
"localizedDescription": "",
"iconURL": "https://raw.githubusercontent.com/swaggyP36000/TrollStore-IPAs/main/icons/com.burbn.instagram.png"
},
{
"name": "InstaRocketPlus",
"bundleIdentifier": "com.burbn.instagram",
"version": "301.1-3.8.13-2.5.0",
"versionDate": "2023-09-21",
"size": 129283083,
"downloadURL": "https://github.com/swaggyP36000/TrollStore-IPAs/releases/download/09-21-2023/InstaRocketPlus-301.1-3.8.13-2.5.0.ipa",
"developerName": "",
"localizedDescription": "",
"iconURL": "https://raw.githubusercontent.com/swaggyP36000/TrollStore-IPAs/main/icons/com.burbn.instagram.png"
},
{
"name": "OVFEditor",
"bundleIdentifier": "com.mutaeb.OVF-Editor",
"version": "4.0.1",
"versionDate": "2023-09-21",
"size": 20245858,
"downloadURL": "https://github.com/swaggyP36000/TrollStore-IPAs/releases/download/09-21-2023/OVFEditor-4.0.1.ipa",
"developerName": "",
"localizedDescription": "",
"iconURL": "https://raw.githubusercontent.com/swaggyP36000/TrollStore-IPAs/main/icons/com.mutaeb.OVF-Editor.png"
},
{
"name": "SpotifyDeluxe",
"bundleIdentifier": "com.spotify.client",
"version": "8.8.72",
"versionDate": "2023-09-21",
"size": 66834506,
"downloadURL": "https://github.com/swaggyP36000/TrollStore-IPAs/releases/download/09-21-2023/SpotifyDeluxe-8.8.72.ipa",
"developerName": "",
"localizedDescription": "",
"iconURL": "https://raw.githubusercontent.com/swaggyP36000/TrollStore-IPAs/main/icons/com.spotify.client.png"
},
{
"name": "Spotilife",
"bundleIdentifier": "com.spotify.client",
"version": "8.8.72",
"versionDate": "2023-09-21",
"size": 60788579,
"downloadURL": "https://github.com/swaggyP36000/TrollStore-IPAs/releases/download/09-21-2023/Spotilife-8.8.72.ipa",
"developerName": "",
"localizedDescription": "",
"iconURL": "https://raw.githubusercontent.com/swaggyP36000/TrollStore-IPAs/main/icons/com.spotify.client.png"
},
{
"name": "Watusi3",
"bundleIdentifier": "net.whatsapp.WhatsApp",
"version": "23.19.0-1.2.4-3.4.4",
"versionDate": "2023-09-21",
"size": 99395812,
"downloadURL": "https://github.com/swaggyP36000/TrollStore-IPAs/releases/download/09-21-2023/Watusi3-23.19.0-1.2.4-3.4.4.ipa",
"developerName": "",
"localizedDescription": "",
"iconURL": "https://raw.githubusercontent.com/swaggyP36000/TrollStore-IPAs/main/icons/net.whatsapp.WhatsApp.png"
},
{
"name": "AIChatSmith",
"bundleIdentifier": "co.vulcanlabs.moodtracker",
"version": "6.2",
"versionDate": "2023-09-19",
"size": 56830198,
"downloadURL": "https://github.com/swaggyP36000/TrollStore-IPAs/releases/download/09-19-2023/AIChatSmith-6.2.ipa",
"developerName": "",
"localizedDescription": "",
"iconURL": "https://raw.githubusercontent.com/swaggyP36000/TrollStore-IPAs/main/icons/co.vulcanlabs.moodtracker.png"
},
{
"name": "Antoine",
"bundleIdentifier": "com.serena.Antoine",
"version": "1.3.tipa.ipa.",
"versionDate": "2023-09-19",
"size": 1623275,
"downloadURL": "https://github.com/swaggyP36000/TrollStore-IPAs/releases/download/09-19-2023/Antoine-1.3.tipa.ipa.tipa",
"developerName": "",
"localizedDescription": "",
"iconURL": "https://raw.githubusercontent.com/swaggyP36000/TrollStore-IPAs/main/icons/com.serena.Antoine.png"
},
{
"name": "BeRealBea",
"bundleIdentifier": "AlexisBarreyat.BeReal",
"version": "1.3.2-1.12.1",
"versionDate": "2023-09-19",
"size": 38588292,
"downloadURL": "https://github.com/swaggyP36000/TrollStore-IPAs/releases/download/09-19-2023/BeRealBea-1.3.2-1.12.1.ipa",
"developerName": "",
"localizedDescription": "",
"iconURL": "https://raw.githubusercontent.com/swaggyP36000/TrollStore-IPAs/main/icons/AlexisBarreyat.BeReal.png"
},
{
"name": "FacebookWolf",
"bundleIdentifier": "com.facebook.Facebook",
"version": "432.1",
"versionDate": "2023-09-19",
"size": 137319129,
"downloadURL": "https://github.com/swaggyP36000/TrollStore-IPAs/releases/download/09-19-2023/FacebookWolf-432.1.ipa",
"developerName": "",
"localizedDescription": "",
"iconURL": "https://raw.githubusercontent.com/swaggyP36000/TrollStore-IPAs/main/icons/com.facebook.Facebook.png"
},
{
"name": "inshot",
"bundleIdentifier": "com.camerasideas.InstaShot",
"version": "1.72.0",
"versionDate": "2023-09-19",
"size": 128843318,
"downloadURL": "https://github.com/swaggyP36000/TrollStore-IPAs/releases/download/09-19-2023/inshot-1.72.0.ipa",
"developerName": "",
"localizedDescription": "",
"iconURL": "https://raw.githubusercontent.com/swaggyP36000/TrollStore-IPAs/main/icons/com.camerasideas.InstaShot.png"
},
{
"name": "InstaRocketBH",
"bundleIdentifier": "com.burbn.instagram",
"version": "301.0",
"versionDate": "2023-09-19",
"size": 129198866,
"downloadURL": "https://github.com/swaggyP36000/TrollStore-IPAs/releases/download/09-19-2023/InstaRocketBH-301.0.ipa",
"developerName": "",
"localizedDescription": "",
"iconURL": "https://raw.githubusercontent.com/swaggyP36000/TrollStore-IPAs/main/icons/com.burbn.instagram.png"
},
{
"name": "InstaRocketCracked",
"bundleIdentifier": "com.burbn.instagram",
"version": "301.0",
"versionDate": "2023-09-19",
"size": 128823977,
"downloadURL": "https://github.com/swaggyP36000/TrollStore-IPAs/releases/download/09-19-2023/InstaRocketCracked-301.0.ipa",
"developerName": "",
"localizedDescription": "",
"iconURL": "https://raw.githubusercontent.com/swaggyP36000/TrollStore-IPAs/main/icons/com.burbn.instagram.png"
},
{
"name": "PhotoshopExpress",
"bundleIdentifier": "com.adobe.PSMobile",
"version": "23.37.0",
"versionDate": "2023-09-19",
"size": 127523623,
"downloadURL": "https://github.com/swaggyP36000/TrollStore-IPAs/releases/download/09-19-2023/PhotoshopExpress-23.37.0.ipa",
"developerName": "",
"localizedDescription": "",
"iconURL": "https://raw.githubusercontent.com/swaggyP36000/TrollStore-IPAs/main/icons/com.adobe.PSMobile.png"
},
{
"name": "RedditPlus",
"bundleIdentifier": "com.reddit.Reddit",
"version": "2023.37.0",
"versionDate": "2023-09-19",
"size": 118088350,
"downloadURL": "https://github.com/swaggyP36000/TrollStore-IPAs/releases/download/09-19-2023/RedditPlus-2023.37.0.ipa",
"developerName": "",
"localizedDescription": "",
"iconURL": "https://raw.githubusercontent.com/swaggyP36000/TrollStore-IPAs/main/icons/com.reddit.Reddit.png"
},
{
"name": "SnapchatFalcon",
"bundleIdentifier": "com.toyopagroup.picaboo",
"version": "12.52",
"versionDate": "2023-09-19",
"size": 114118571,
"downloadURL": "https://github.com/swaggyP36000/TrollStore-IPAs/releases/download/09-19-2023/SnapchatFalcon-12.52.ipa",
"developerName": "",
"localizedDescription": "",
"iconURL": "https://raw.githubusercontent.com/swaggyP36000/TrollStore-IPAs/main/icons/com.toyopagroup.picaboo.png"
},
{
"name": "TwitchPlus",
"bundleIdentifier": "tv.twitch",
"version": "16.3",
"versionDate": "2023-09-19",
"size": 73398412,
"downloadURL": "https://github.com/swaggyP36000/TrollStore-IPAs/releases/download/09-19-2023/TwitchPlus-16.3.ipa",
"developerName": "",
"localizedDescription": "",
"iconURL": "https://raw.githubusercontent.com/swaggyP36000/TrollStore-IPAs/main/icons/tv.twitch.png"
},
{
"name": "YTMusicUltimate",
"bundleIdentifier": "com.google.ios.youtubemusic",
"version": "1.5-6.20.2",
"versionDate": "2023-09-19",
"size": 64597538,
"downloadURL": "https://github.com/swaggyP36000/TrollStore-IPAs/releases/download/09-19-2023/YTMusicUltimate-1.5-6.20.2.ipa",
"developerName": "",
"localizedDescription": "",
"iconURL": "https://raw.githubusercontent.com/swaggyP36000/TrollStore-IPAs/main/icons/com.google.ios.youtubemusic.png"
},
{
"name": "BeRealBea",
"bundleIdentifier": "AlexisBarreyat.BeReal",
"version": "1.3.1-1.12.0",
"versionDate": "2023-09-18",
"size": 38585370,
"downloadURL": "https://github.com/swaggyP36000/TrollStore-IPAs/releases/download/09-18-2023/BeRealBea-1.3.1-1.12.0.ipa",
"developerName": "",
"localizedDescription": "",
"iconURL": "https://raw.githubusercontent.com/swaggyP36000/TrollStore-IPAs/main/icons/AlexisBarreyat.BeReal.png"
},
{
"name": "BHTikTokPlus",
"bundleIdentifier": "com.zhiliaoapp.musically",
"version": "31.2.0-2.2.1",
"versionDate": "2023-09-18",
"size": 231301882,
"downloadURL": "https://github.com/swaggyP36000/TrollStore-IPAs/releases/download/09-18-2023/BHTikTokPlus-31.2.0-2.2.1.ipa",
"developerName": "",
"localizedDescription": "",
"iconURL": "https://raw.githubusercontent.com/swaggyP36000/TrollStore-IPAs/main/icons/com.zhiliaoapp.musically.png"
},
{
"name": "InstaRocketCracked",
"bundleIdentifier": "com.burbn.instagram",
"version": "300.0",
"versionDate": "2023-09-18",
"size": 141290845,
"downloadURL": "https://github.com/swaggyP36000/TrollStore-IPAs/releases/download/09-18-2023/InstaRocketCracked-300.0.ipa",
"developerName": "",
"localizedDescription": "",
"iconURL": "https://raw.githubusercontent.com/swaggyP36000/TrollStore-IPAs/main/icons/com.burbn.instagram.png"
},
{
"name": "PhotoshopExpress",
"bundleIdentifier": "com.adobe.PSMobile",
"version": "23.36.0",
"versionDate": "2023-09-18",
"size": 154943359,
"downloadURL": "https://github.com/swaggyP36000/TrollStore-IPAs/releases/download/09-18-2023/PhotoshopExpress-23.36.0.ipa",
"developerName": "",
"localizedDescription": "",
"iconURL": "https://raw.githubusercontent.com/swaggyP36000/TrollStore-IPAs/main/icons/com.adobe.PSMobile.png"
},
{
"name": "ReminiPro",
"bundleIdentifier": "com.bigwinepot.nwdn.international",
"version": "2.9.77",
"versionDate": "2023-09-18",