-
Notifications
You must be signed in to change notification settings - Fork 198
Expand file tree
/
Copy pathapps_esign.json
More file actions
6860 lines (6860 loc) · 435 KB
/
Copy pathapps_esign.json
File metadata and controls
6860 lines (6860 loc) · 435 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": "swaggyP36000 IPA Library",
"identifier": "xyz.hieuddo.ipalibrary",
"sourceURL": "https://raw.githubusercontent.com/swaggyP36000/TrollStore-IPAs/main/apps.json",
"apps": [
{
"name": "Aidoku",
"bundleIdentifier": "xyz.skitty.Aidoku",
"version": "0.6.4-10b1121",
"versionDate": "2023-07-18",
"size": 5568713,
"downloadURL": "https://github.com/swaggyP36000/TrollStore-IPAs/releases/download/07-17-2023/Aidoku-0.6.4-10b1121.ipa",
"developerName": "Aidoku",
"localizedDescription": "Webtoon/manga browser\nLast updated: 08-18-2024\nStatus: \u2705",
"iconURL": "https://raw.githubusercontent.com/swaggyP36000/TrollStore-IPAs/main/icons/xyz.skitty.Aidoku.png"
},
{
"name": "BHX",
"bundleIdentifier": "com.atebits.Tweetie2",
"version": "9.67",
"versionDate": "2023-07-18",
"size": 84208984,
"downloadURL": "https://github.com/swaggyP36000/TrollStore-IPAs/releases/download/07-17-2023/BHX-9.67.ipa",
"developerName": "BandarHL / AppDB / Manpreet Singh @thisismanpreeets / DPixel / CydiaAbdullah / zxcvbn's tweaked IPAs / TrollStore AppsUpdates / nowesr1 / Sultan Mods / binnichtaktiv's iPA Library / nowesr1",
"localizedDescription": "Twitter, with added features such as custom fonts, video saving, no ads, tabs customization, and more!\nLast updated: 09-06-2024\nStatus: \u2705 \ud83d\udc4d",
"iconURL": "https://raw.githubusercontent.com/swaggyP36000/TrollStore-IPAs/main/icons/com.atebits.Tweetie2.png"
},
{
"name": "LokLok",
"bundleIdentifier": "com.xoumb.mp3.video.player",
"version": "5.0",
"versionDate": "2023-07-18",
"size": 22035388,
"downloadURL": "https://github.com/swaggyP36000/TrollStore-IPAs/releases/download/07-17-2023/LokLok-5.0.ipa",
"developerName": "N/A",
"localizedDescription": "HDO Box clone. see original app description for more info\nLast updated: 07-17-2023\nStatus: \u26a0\ufe0f \u2754",
"iconURL": "https://raw.githubusercontent.com/swaggyP36000/TrollStore-IPAs/main/icons/com.xoumb.mp3.video.player.png"
},
{
"name": "NineAnimator",
"bundleIdentifier": "com.marcuszhou.NineAnimator",
"version": "1.3.0-3",
"versionDate": "2023-07-18",
"size": 8144665,
"downloadURL": "https://github.com/swaggyP36000/TrollStore-IPAs/releases/download/07-17-2023/NineAnimator-1.3.0-3.ipa",
"developerName": "SuperMarcus",
"localizedDescription": "Anime streamer, supports multiple sources and comes with a user-friendly GUI\nLast updated: 07-17-2023\nStatus: \u2754",
"iconURL": "https://raw.githubusercontent.com/swaggyP36000/TrollStore-IPAs/main/icons/com.marcuszhou.NineAnimator.png"
},
{
"name": "BeRealBea",
"bundleIdentifier": "AlexisBarreyat.BeReal",
"version": "1.3-1.7.1",
"versionDate": "2023-07-16",
"size": 38098024,
"downloadURL": "https://github.com/swaggyP36000/TrollStore-IPAs/releases/download/07-16-2023/BeRealBea-1.3-1.7.1.ipa",
"developerName": "yandevelop / zxcvbn's tweaked IPAs / Ed0.ipa",
"localizedDescription": "Trollfools version HERE. BeReal, injected with the tweak Bea. Same as Unblur with more features, full tweak description here.\nLast updated: 09-14-2024\nStatus: \u2705 \ud83d\udd35 \ud83d\udc4d \u2b50",
"iconURL": "https://raw.githubusercontent.com/swaggyP36000/TrollStore-IPAs/main/icons/AlexisBarreyat.BeReal.png"
},
{
"name": "TwitchPlus",
"bundleIdentifier": "tv.twitch",
"version": "15.6",
"versionDate": "2023-07-16",
"size": 62426621,
"downloadURL": "https://github.com/swaggyP36000/TrollStore-IPAs/releases/download/07-16-2023/TwitchPlus-15.6.ipa",
"developerName": "AppDB / DPixel / zxcvbn's tweaked IPAs / level3tjg / Ed0.ipa / ArianaMinajj",
"localizedDescription": "Alternative to Twitch Toolbox, Twitch with no ads.\nLast updated: 09-04-2024\nStatus: \u2705 \u2b50",
"iconURL": "https://raw.githubusercontent.com/swaggyP36000/TrollStore-IPAs/main/icons/tv.twitch.png"
},
{
"name": "BHTikTokLRD",
"bundleIdentifier": "com.zhiliaoapp.musically",
"version": "30.3.0",
"versionDate": "2023-07-14",
"size": 239475937,
"downloadURL": "https://github.com/swaggyP36000/TrollStore-IPAs/releases/download/07-14-2023/BHTikTokLRD-30.3.0.ipa",
"developerName": "m7",
"localizedDescription": "This is arguably the most complete mod for TikTok, bundling both BHTikTok and TikTokLRD v3.0 in the same app. See the descriptions of these separate apps for more info\nLast updated: 07-14-2023\nStatus: \u274c",
"iconURL": "https://raw.githubusercontent.com/swaggyP36000/TrollStore-IPAs/main/icons/com.zhiliaoapp.musically.png"
},
{
"name": "Paperback",
"bundleIdentifier": "dev.faizandurrani.moe.paperback.app",
"version": "0.8.2",
"versionDate": "2023-07-14",
"size": 29341961,
"downloadURL": "https://github.com/swaggyP36000/TrollStore-IPAs/releases/download/07-14-2023/Paperback-0.8.2.ipa",
"developerName": "N/A",
"localizedDescription": "Paperback is one of the two best manga readers on iOS (for anyone wondering, Aidoku is the other). Only needed if you live in an area where your App Store doesn't have Paperback\nLast updated: 01-14-2024\nStatus: \u2705 \ud83d\udc4d",
"iconURL": "https://raw.githubusercontent.com/swaggyP36000/TrollStore-IPAs/main/icons/dev.faizandurrani.moe.paperback.app.png"
},
{
"name": "Aidoku",
"bundleIdentifier": "xyz.skitty.Aidoku",
"version": "0.6.4-0c1c109",
"versionDate": "2023-07-13",
"size": 5568175,
"downloadURL": "https://github.com/swaggyP36000/TrollStore-IPAs/releases/download/07-12-2023/Aidoku-0.6.4-0c1c109.ipa",
"developerName": "Aidoku",
"localizedDescription": "Webtoon/manga browser\nLast updated: 08-18-2024\nStatus: \u2705",
"iconURL": "https://raw.githubusercontent.com/swaggyP36000/TrollStore-IPAs/main/icons/xyz.skitty.Aidoku.png"
},
{
"name": "BHTikTokPlus",
"bundleIdentifier": "com.zhiliaoapp.musically",
"version": "30.3.0-0.0.1",
"versionDate": "2023-07-13",
"size": 226368598,
"downloadURL": "https://github.com/swaggyP36000/TrollStore-IPAs/releases/download/07-12-2023/BHTikTokPlus-30.3.0-0.0.1.ipa",
"developerName": "BandarHL / dayanch96 / zxcvbn's tweaked IPAs / mbs0ft / riadipa / ArianaMinajj",
"localizedDescription": "Despite being outdated, this tweak still offers a few features that are compatible with the latest versions of the app. Note: \"Change Region\" feature seems to not be working, refer to this issue + Given that updates for this tweak are unlikely to be released, you'll need to configure the tweak to your liking (using the latest stable version or lower: <=34.1.0-2.3) before installing the latest version over the stable one. (tweak will work with your settings but you won't be able to open the menu)\nLast updated: dayanch96 : 09-07-2024 / BandarHL : 08-19-2023\nStatus: \u2705 \ud83d\udc4d \u2b50",
"iconURL": "https://raw.githubusercontent.com/swaggyP36000/TrollStore-IPAs/main/icons/com.zhiliaoapp.musically.png"
},
{
"name": "Aidoku",
"bundleIdentifier": "xyz.skitty.Aidoku",
"version": "0.6.4-0069c4d",
"versionDate": "2023-07-11",
"size": 5568127,
"downloadURL": "https://github.com/swaggyP36000/TrollStore-IPAs/releases/download/07-11-2023/Aidoku-0.6.4-0069c4d.ipa",
"developerName": "Aidoku",
"localizedDescription": "Webtoon/manga browser\nLast updated: 08-18-2024\nStatus: \u2705",
"iconURL": "https://raw.githubusercontent.com/swaggyP36000/TrollStore-IPAs/main/icons/xyz.skitty.Aidoku.png"
},
{
"name": "BHX",
"bundleIdentifier": "com.atebits.Tweetie2",
"version": "9.66",
"versionDate": "2023-07-11",
"size": 87005632,
"downloadURL": "https://github.com/swaggyP36000/TrollStore-IPAs/releases/download/07-11-2023/BHX-9.66.ipa",
"developerName": "BandarHL / AppDB / Manpreet Singh @thisismanpreeets / DPixel / CydiaAbdullah / zxcvbn's tweaked IPAs / TrollStore AppsUpdates / nowesr1 / Sultan Mods / binnichtaktiv's iPA Library / nowesr1",
"localizedDescription": "Twitter, with added features such as custom fonts, video saving, no ads, tabs customization, and more!\nLast updated: 09-06-2024\nStatus: \u2705 \ud83d\udc4d",
"iconURL": "https://raw.githubusercontent.com/swaggyP36000/TrollStore-IPAs/main/icons/com.atebits.Tweetie2.png"
},
{
"name": "InfusePro",
"bundleIdentifier": "com.firecore.infuse",
"version": "7.5.8",
"versionDate": "2023-07-11",
"size": 41628224,
"downloadURL": "https://github.com/swaggyP36000/TrollStore-IPAs/releases/download/07-11-2023/InfusePro-7.5.8.ipa",
"developerName": "Suffuse-Team / InfusePlus",
"localizedDescription": "Injected with InfusePlus by dayanch96. Fancy media/video player, cracked for premium. Full app description here\nLast updated: 09-07-2024\nStatus: \u2705 \ud83d\udd35 \ud83d\udc4d",
"iconURL": "https://raw.githubusercontent.com/swaggyP36000/TrollStore-IPAs/main/icons/com.firecore.infuse.png"
},
{
"name": "Otraku",
"bundleIdentifier": "com.otraku.app",
"version": "1.2.4+1",
"versionDate": "2023-07-11",
"size": 10120299,
"downloadURL": "https://github.com/swaggyP36000/TrollStore-IPAs/releases/download/07-11-2023/Otraku-1.2.4%2B1.ipa",
"developerName": "lotusprey",
"localizedDescription": "Unofficial AniList viewer, much better UI and stats than MyAniList or others on the App Store\nLast updated: 07-01-2024\nStatus: \u2705",
"iconURL": "https://raw.githubusercontent.com/swaggyP36000/TrollStore-IPAs/main/icons/com.otraku.app.png"
},
{
"name": "TikTokDark",
"bundleIdentifier": "com.zhiliaoapp.musically",
"version": "30.3.0",
"versionDate": "2023-07-11",
"size": 226136340,
"downloadURL": "https://github.com/swaggyP36000/TrollStore-IPAs/releases/download/07-11-2023/TikTokDark-30.3.0.ipa",
"developerName": "Manpreet Singh @thisismanpreets / AppDB / DPixel / FayezUpdates / iApps / zxcvbn's tweaked IPAs / nowesr1",
"localizedDescription": "Alternative to DLTikTok with similar features. If you don't see a settings option for Dark, click the empty space at the top right of the TikTok settings page. It's an invisible button\nLast updated: 08-31-2024\nStatus: \u2705",
"iconURL": "https://raw.githubusercontent.com/swaggyP36000/TrollStore-IPAs/main/icons/com.zhiliaoapp.musically.png"
},
{
"name": "Violet",
"bundleIdentifier": "xyz.project.violet",
"version": "1.28.5",
"versionDate": "2023-07-11",
"size": 94054828,
"downloadURL": "https://github.com/swaggyP36000/TrollStore-IPAs/releases/download/07-11-2023/Violet-1.28.5.ipa",
"developerName": "project-violet",
"localizedDescription": "Another strictly 18+ NSFW manga reader. App is a bit buggy - let it download the database, then close and reopen if it freezes. You will have to reopen the app after going into some sub-menus bc there's no way out of them (UI bugs). Supports iOS 14+\nLast updated: 05-26-2024\nStatus: \u2705",
"iconURL": "https://raw.githubusercontent.com/swaggyP36000/TrollStore-IPAs/main/icons/xyz.project.violet.png"
},
{
"name": "Aidoku",
"bundleIdentifier": "xyz.skitty.Aidoku",
"version": "0.6.4",
"versionDate": "2023-07-10",
"size": 5568127,
"downloadURL": "https://github.com/swaggyP36000/TrollStore-IPAs/releases/download/07-09-2023/Aidoku-0.6.4.ipa",
"developerName": "Aidoku",
"localizedDescription": "Webtoon/manga browser\nLast updated: 08-18-2024\nStatus: \u2705",
"iconURL": "https://raw.githubusercontent.com/swaggyP36000/TrollStore-IPAs/main/icons/xyz.skitty.Aidoku.png"
},
{
"name": "BHX",
"bundleIdentifier": "com.atebits.Tweetie2",
"version": "9.65",
"versionDate": "2023-07-09",
"size": 86994858,
"downloadURL": "https://github.com/swaggyP36000/TrollStore-IPAs/releases/download/07-09-2023/BHX-9.65.ipa",
"developerName": "BandarHL / AppDB / Manpreet Singh @thisismanpreeets / DPixel / CydiaAbdullah / zxcvbn's tweaked IPAs / TrollStore AppsUpdates / nowesr1 / Sultan Mods / binnichtaktiv's iPA Library / nowesr1",
"localizedDescription": "Twitter, with added features such as custom fonts, video saving, no ads, tabs customization, and more!\nLast updated: 09-06-2024\nStatus: \u2705 \ud83d\udc4d",
"iconURL": "https://raw.githubusercontent.com/swaggyP36000/TrollStore-IPAs/main/icons/com.atebits.Tweetie2.png"
},
{
"name": "FacebookWolf",
"bundleIdentifier": "com.facebook.Facebook",
"version": "422.0",
"versionDate": "2023-07-09",
"size": 148850803,
"downloadURL": "https://github.com/swaggyP36000/TrollStore-IPAs/releases/download/07-09-2023/FacebookWolf-422.0.ipa",
"developerName": "CyPwn IPA Library / Manpreet Singh @thisismanpreets / FayezUpdates / DPixel / CydiaAbdullah / iApps / Clement \uea00 / binnichtaktiv's iPA Library",
"localizedDescription": "Facebook, injected with Wolf for Facebook by Michael Lema.\nLast updated: 09-06-2024\nStatus: \u2705",
"iconURL": "https://raw.githubusercontent.com/swaggyP36000/TrollStore-IPAs/main/icons/com.facebook.Facebook.png"
},
{
"name": "InShotPro",
"bundleIdentifier": "com.camerasideas.InstaShot",
"version": "1.70.0",
"versionDate": "2023-07-09",
"size": 104584718,
"downloadURL": "https://github.com/swaggyP36000/TrollStore-IPAs/releases/download/07-09-2023/InShotPro-1.70.0.ipa",
"developerName": "AppDB / DPixel / iApps / FayezUpdates / Manpreet Singh @thisismanpreets / zxcvbn\u2019s tweaked IPAs",
"localizedDescription": "Popular video/image editor with pro features unlocked.\nLast updated: 09-05-2024\nStatus: \u2705",
"iconURL": "https://raw.githubusercontent.com/swaggyP36000/TrollStore-IPAs/main/icons/com.camerasideas.InstaShot.png"
},
{
"name": "TikTokLRD",
"bundleIdentifier": "com.zhiliaoapp.musically",
"version": "2.5-30.2.0",
"versionDate": "2023-07-09",
"size": 221657400,
"downloadURL": "https://github.com/swaggyP36000/TrollStore-IPAs/releases/download/07-09-2023/TikTokLRD-2.5-30.2.0.ipa",
"developerName": "zxcvbn\u2019s tweaked IPAs / Manpreet Singh @thisismanpreeets / nowesr1",
"localizedDescription": "TikTok, injected with a version of TikTokLRD (3.5).\nLast updated: 09-07-2024\nStatus: \u2705",
"iconURL": "https://raw.githubusercontent.com/swaggyP36000/TrollStore-IPAs/main/icons/com.zhiliaoapp.musically.png"
},
{
"name": "TikTokDark",
"bundleIdentifier": "com.zhiliaoapp.musically",
"version": "30.2.0",
"versionDate": "2023-07-05",
"size": 167450012,
"downloadURL": "https://github.com/swaggyP36000/TrollStore-IPAs/releases/download/07-05-2023/TikTokDark-30.2.0.ipa",
"developerName": "Manpreet Singh @thisismanpreets / AppDB / DPixel / FayezUpdates / iApps / zxcvbn's tweaked IPAs / nowesr1",
"localizedDescription": "Alternative to DLTikTok with similar features. If you don't see a settings option for Dark, click the empty space at the top right of the TikTok settings page. It's an invisible button\nLast updated: 08-31-2024\nStatus: \u2705",
"iconURL": "https://raw.githubusercontent.com/swaggyP36000/TrollStore-IPAs/main/icons/com.zhiliaoapp.musically.png"
},
{
"name": "Enmity",
"bundleIdentifier": "com.hammerandchisel.discord",
"version": "2.2.6-184.0",
"versionDate": "2023-07-04",
"size": 99992444,
"downloadURL": "https://github.com/swaggyP36000/TrollStore-IPAs/releases/download/07-04-2023/Enmity-2.2.6-184.0.ipa",
"developerName": "CyPwn IPA Library / Enmity Team / zxcvbn's tweaked IPAs",
"localizedDescription": "Discord, injected with the popular tweak Enmity!\nLast updated: 09-13-2024\nStatus: \u2705",
"iconURL": "https://raw.githubusercontent.com/swaggyP36000/TrollStore-IPAs/main/icons/com.hammerandchisel.discord.png"
},
{
"name": "SnapchatFalcon",
"bundleIdentifier": "com.toyopagroup.picaboo",
"version": "12.41",
"versionDate": "2023-07-04",
"size": 107631104,
"downloadURL": "https://github.com/swaggyP36000/TrollStore-IPAs/releases/download/07-04-2023/SnapchatFalcon-12.41.ipa",
"developerName": "iCrackIPA / zxcvbn's tweaked IPAs / AppDB / m7 / RobsMods / riadipa",
"localizedDescription": "SNAPCHAT HAS NOW IMPLEMENTED NEW SIDELOADING DETECTION MEASURES, MAKING ALL MODIFIED VERSIONS OF SNAPCHAT DETECTABLE. AS A RESULT, NO SNAPCHAT TWEAK IS SAFE. IT IS ADVISED TO DISCONTINUE USING ANY SNAPCHAT TWEAKS TO AVOID THE RISK OF HAVING YOUR ACCOUNT/DEVICE BANNED.\nLast updated: 03-19-2024\nStatus: \u274c",
"iconURL": "https://raw.githubusercontent.com/swaggyP36000/TrollStore-IPAs/main/icons/com.toyopagroup.picaboo.png"
},
{
"name": "PhotomathPlus",
"bundleIdentifier": "com.microblink.PhotoMath",
"version": "8.26.0",
"versionDate": "2023-07-02",
"size": 16295410,
"downloadURL": "https://github.com/swaggyP36000/TrollStore-IPAs/releases/download/07-02-2023/PhotomathPlus-8.26.0.ipa",
"developerName": "DPixel / IPA Fire / zxcvbn\u2019s tweaked IPAs",
"localizedDescription": "Photomath, with pro features unlocked.\nLast updated: 08-21-2024\nStatus: \u2705",
"iconURL": "https://raw.githubusercontent.com/swaggyP36000/TrollStore-IPAs/main/icons/com.microblink.PhotoMath.png"
},
{
"name": "PicsArtPlusPlus",
"bundleIdentifier": "com.picsart.studio",
"version": "22.6.2",
"versionDate": "2023-06-30",
"size": 97907313,
"downloadURL": "https://github.com/swaggyP36000/TrollStore-IPAs/releases/download/06-30-2023/PicsArtPlusPlus-22.6.2.ipa",
"developerName": "zxcvbn\u2019s tweaked IPAs / AppDB / CyPwn IPA Library / DPixel / Manpreet Singh @thisismanpreets / Qamislo - Apps / binnichtaktiv's iPA Library",
"localizedDescription": "PicsArt with premium features enbled.\nLast updated: 08-25-2024\nStatus: \u2705 \ud83d\udc4d \u2b50",
"iconURL": "https://raw.githubusercontent.com/swaggyP36000/TrollStore-IPAs/main/icons/com.picsart.studio.png"
},
{
"name": "Vendetta",
"bundleIdentifier": "com.hammerandchisel.discord",
"version": "181.0",
"versionDate": "2023-06-30",
"size": 93987800,
"downloadURL": "https://github.com/swaggyP36000/TrollStore-IPAs/releases/download/06-30-2023/Vendetta-181.0.ipa",
"developerName": "vendetta-mod / zxcvbn's tweaked IPAs / CyPwn IPA Library / Lisandra-dev / CyPwn IPA Library",
"localizedDescription": "Vendetta plugins list. A modified Discord client akin to Enmity for Discord, built upon the foundation of Vencord, I believe. It boasts a distinct set of plugins, although many of the plugins from Enmity are also available on Vendetta. Additionally, Enmity themes can be transferred to Vendetta, although users should anticipate encountering user interface issues during the process. Full description here\nLast updated: 02-22-2024\nStatus: \u274c",
"iconURL": "https://raw.githubusercontent.com/swaggyP36000/TrollStore-IPAs/main/icons/com.hammerandchisel.discord.png"
},
{
"name": "InfusePro",
"bundleIdentifier": "com.firecore.infuse",
"version": "7.5.7",
"versionDate": "2023-06-29",
"size": 44492277,
"downloadURL": "https://github.com/swaggyP36000/TrollStore-IPAs/releases/download/06-28-2023/InfusePro-7.5.7.ipa",
"developerName": "Suffuse-Team / InfusePlus",
"localizedDescription": "Injected with InfusePlus by dayanch96. Fancy media/video player, cracked for premium. Full app description here\nLast updated: 09-07-2024\nStatus: \u2705 \ud83d\udd35 \ud83d\udc4d",
"iconURL": "https://raw.githubusercontent.com/swaggyP36000/TrollStore-IPAs/main/icons/com.firecore.infuse.png"
},
{
"name": "InstagramElite",
"bundleIdentifier": "com.burbn.instagram",
"version": "289.1",
"versionDate": "2023-06-29",
"size": 145214663,
"downloadURL": "https://github.com/swaggyP36000/TrollStore-IPAs/releases/download/06-28-2023/InstagramElite-289.1.ipa",
"developerName": "DarkWebUser / MeemNon / zxcvbn's tweaked IPAs",
"localizedDescription": "Instagram, injected with Rocket Cracked and DLInsta/ DLInsta's media downloading is hit-and-miss depending on the post, so keep that disabled and use Rocket's media saving toggles. For all other settings, you can pick and choose which tweak you want to do what. To activate Rocket, follow these steps\nLast updated: 06-28-2023\nStatus: \u274c",
"iconURL": "https://raw.githubusercontent.com/swaggyP36000/TrollStore-IPAs/main/icons/com.burbn.instagram.png"
},
{
"name": "InstaRocketCracked",
"bundleIdentifier": "com.burbn.instagram",
"version": "289.1",
"versionDate": "2023-06-29",
"size": 143202331,
"downloadURL": "https://github.com/swaggyP36000/TrollStore-IPAs/releases/download/06-28-2023/InstaRocketCracked-289.1.ipa",
"developerName": "AppDB / DarkWebUser / DPixel / Manpreet Singh @thisismanpreets / nowesr1 / zxcvbn's tweaked IPAs",
"localizedDescription": "Instagram, injected with Rocket Cracked (no ad banner, all features functional). To activate Rocket, follow these steps.\nLast updated: 09-10-2024\nStatus: \u2705 \u2b50",
"iconURL": "https://raw.githubusercontent.com/swaggyP36000/TrollStore-IPAs/main/icons/com.burbn.instagram.png"
},
{
"name": "Spotilife",
"bundleIdentifier": "com.spotify.client",
"version": "8.8.48",
"versionDate": "2023-06-29",
"size": 62089458,
"downloadURL": "https://github.com/swaggyP36000/TrollStore-IPAs/releases/download/06-28-2023/Spotilife-8.8.48.ipa",
"developerName": "Manpreet Singh @thisismanpreets / Spotilife IPAs / Spotify iOS",
"localizedDescription": "This version has support for CarPlay when installed via TrollStore.\nLast updated: 04-20-2024\nStatus: \u274c",
"iconURL": "https://raw.githubusercontent.com/swaggyP36000/TrollStore-IPAs/main/icons/com.spotify.client.png"
},
{
"name": "TikTokDark",
"bundleIdentifier": "com.zhiliaoapp.musically",
"version": "30.1.0",
"versionDate": "2023-06-29",
"size": 226257129,
"downloadURL": "https://github.com/swaggyP36000/TrollStore-IPAs/releases/download/06-28-2023/TikTokDark-30.1.0.ipa",
"developerName": "Manpreet Singh @thisismanpreets / AppDB / DPixel / FayezUpdates / iApps / zxcvbn's tweaked IPAs / nowesr1",
"localizedDescription": "Alternative to DLTikTok with similar features. If you don't see a settings option for Dark, click the empty space at the top right of the TikTok settings page. It's an invisible button\nLast updated: 08-31-2024\nStatus: \u2705",
"iconURL": "https://raw.githubusercontent.com/swaggyP36000/TrollStore-IPAs/main/icons/com.zhiliaoapp.musically.png"
},
{
"name": "TwitchPlus",
"bundleIdentifier": "tv.twitch",
"version": "15.5",
"versionDate": "2023-06-29",
"size": 78060639,
"downloadURL": "https://github.com/swaggyP36000/TrollStore-IPAs/releases/download/06-28-2023/TwitchPlus-15.5.ipa",
"developerName": "AppDB / DPixel / zxcvbn's tweaked IPAs / level3tjg / Ed0.ipa / ArianaMinajj",
"localizedDescription": "Alternative to Twitch Toolbox, Twitch with no ads.\nLast updated: 09-04-2024\nStatus: \u2705 \u2b50",
"iconURL": "https://raw.githubusercontent.com/swaggyP36000/TrollStore-IPAs/main/icons/tv.twitch.png"
},
{
"name": "InstaRocketCracked",
"bundleIdentifier": "com.burbn.instagram",
"version": "289",
"versionDate": "2023-06-27",
"size": 140912140,
"downloadURL": "https://github.com/swaggyP36000/TrollStore-IPAs/releases/download/06-27-2023/InstaRocketCracked-289.ipa",
"developerName": "AppDB / DarkWebUser / DPixel / Manpreet Singh @thisismanpreets / nowesr1 / zxcvbn's tweaked IPAs",
"localizedDescription": "Instagram, injected with Rocket Cracked (no ad banner, all features functional). To activate Rocket, follow these steps.\nLast updated: 09-10-2024\nStatus: \u2705 \u2b50",
"iconURL": "https://raw.githubusercontent.com/swaggyP36000/TrollStore-IPAs/main/icons/com.burbn.instagram.png"
},
{
"name": "Nicegram",
"bundleIdentifier": "app.nicegram",
"version": "1.3.5",
"versionDate": "2023-06-27",
"size": 88621142,
"downloadURL": "https://github.com/swaggyP36000/TrollStore-IPAs/releases/download/06-27-2023/Nicegram-1.3.5.ipa",
"developerName": "CyPwn IPA Library / AppDB / IPA Library / MeemNon / DPixel / zxcvbn\u2019s tweaked IPAs / iOS Tutorials + App Cracks",
"localizedDescription": "Nicegram, cracked for premium features (including having the translate button next to messages in chats). In order to unlock Premium, click on \"Assistant\" at the bottom, then on \"Unleash your Nicegram perks\" and finally click on \"start\" at the bottom. Note: I highly recommend switching to Swiftgram.\nLast updated: 09-05-2024\nStatus: \u2705",
"iconURL": "https://raw.githubusercontent.com/swaggyP36000/TrollStore-IPAs/main/icons/app.nicegram.png"
},
{
"name": "PicsArtPlusPlus",
"bundleIdentifier": "com.picsart.studio",
"version": "22.5.6",
"versionDate": "2023-06-27",
"size": 102553252,
"downloadURL": "https://github.com/swaggyP36000/TrollStore-IPAs/releases/download/06-27-2023/PicsArtPlusPlus-22.5.6.ipa",
"developerName": "zxcvbn\u2019s tweaked IPAs / AppDB / CyPwn IPA Library / DPixel / Manpreet Singh @thisismanpreets / Qamislo - Apps / binnichtaktiv's iPA Library",
"localizedDescription": "PicsArt with premium features enbled.\nLast updated: 08-25-2024\nStatus: \u2705 \ud83d\udc4d \u2b50",
"iconURL": "https://raw.githubusercontent.com/swaggyP36000/TrollStore-IPAs/main/icons/com.picsart.studio.png"
},
{
"name": "CyPwnStore",
"bundleIdentifier": "Ed0ardo.CyPwn-Store",
"version": "7.0",
"versionDate": "2023-06-25",
"size": 914692,
"downloadURL": "https://github.com/swaggyP36000/TrollStore-IPAs/releases/download/06-25-2023/CyPwnStore-7.0.ipa",
"developerName": "CyPwn IPA Library",
"localizedDescription": "App to browse the CyPwn IPA Library, regular and TrollStore\nLast updated: 06-25-2023\nStatus: \u2705",
"iconURL": "https://raw.githubusercontent.com/swaggyP36000/TrollStore-IPAs/main/icons/Ed0ardo.CyPwn-Store.png"
},
{
"name": "ESign",
"bundleIdentifier": "p3.xyz.yyyue.esign",
"version": "4.8.2",
"versionDate": "2023-06-25",
"size": 7120626,
"downloadURL": "https://github.com/swaggyP36000/TrollStore-IPAs/releases/download/06-25-2023/ESign-4.8.2.ipa",
"developerName": "CyPwn IPA Library / AppDB",
"localizedDescription": "An app source browser that I personally use alongside TrollStore, that also occasionally gives you free certificates to sign apps with if you wish to traditionally sideload your apps. Can also inject debs into the IPA of your choice.\nLast updated: 01-28-2024\nStatus: \u2705",
"iconURL": "https://raw.githubusercontent.com/swaggyP36000/TrollStore-IPAs/main/icons/p3.xyz.yyyue.esign.png"
},
{
"name": "FacebookWolf",
"bundleIdentifier": "com.facebook.Facebook",
"version": "419.0",
"versionDate": "2023-06-25",
"size": 147584969,
"downloadURL": "https://github.com/swaggyP36000/TrollStore-IPAs/releases/download/06-25-2023/FacebookWolf-419.0.ipa",
"developerName": "CyPwn IPA Library / Manpreet Singh @thisismanpreets / FayezUpdates / DPixel / CydiaAbdullah / iApps / Clement \uea00 / binnichtaktiv's iPA Library",
"localizedDescription": "Facebook, injected with Wolf for Facebook by Michael Lema.\nLast updated: 09-06-2024\nStatus: \u2705",
"iconURL": "https://raw.githubusercontent.com/swaggyP36000/TrollStore-IPAs/main/icons/com.facebook.Facebook.png"
},
{
"name": "ShowMania",
"bundleIdentifier": "com.showmania.co",
"version": "2.0",
"versionDate": "2023-06-25",
"size": 9764447,
"downloadURL": "https://github.com/swaggyP36000/TrollStore-IPAs/releases/download/06-25-2023/ShowMania-2.0.ipa",
"developerName": "DPixel / Manpreet Singh @thisismanpreets",
"localizedDescription": "Yet another HDO Play under a different name, modded for no ads\nLast updated: 06-25-2023\nStatus: \u26a0\ufe0f",
"iconURL": "https://raw.githubusercontent.com/swaggyP36000/TrollStore-IPAs/main/icons/com.showmania.co.png"
},
{
"name": "TikTokLRD",
"bundleIdentifier": "com.zhiliaoapp.musically",
"version": "30.0.0",
"versionDate": "2023-06-25",
"size": 227767318,
"downloadURL": "https://github.com/swaggyP36000/TrollStore-IPAs/releases/download/06-25-2023/TikTokLRD-30.0.0.ipa",
"developerName": "zxcvbn\u2019s tweaked IPAs / Manpreet Singh @thisismanpreeets / nowesr1",
"localizedDescription": "TikTok, injected with a version of TikTokLRD (3.5).\nLast updated: 09-07-2024\nStatus: \u2705",
"iconURL": "https://raw.githubusercontent.com/swaggyP36000/TrollStore-IPAs/main/icons/com.zhiliaoapp.musically.png"
},
{
"name": "BeRealBea",
"bundleIdentifier": "AlexisBarreyat.BeReal",
"version": "1.2.2-1.5",
"versionDate": "2023-06-25",
"size": 41168244,
"downloadURL": "https://github.com/swaggyP36000/TrollStore-IPAs/releases/download/06-24-2023/BeRealBea-1.2.2-1.5.ipa",
"developerName": "yandevelop / zxcvbn's tweaked IPAs / Ed0.ipa",
"localizedDescription": "Trollfools version HERE. BeReal, injected with the tweak Bea. Same as Unblur with more features, full tweak description here.\nLast updated: 09-14-2024\nStatus: \u2705 \ud83d\udd35 \ud83d\udc4d \u2b50",
"iconURL": "https://raw.githubusercontent.com/swaggyP36000/TrollStore-IPAs/main/icons/AlexisBarreyat.BeReal.png"
},
{
"name": "BHX",
"bundleIdentifier": "com.atebits.Tweetie2",
"version": "3.9.1-9.63",
"versionDate": "2023-06-25",
"size": 97336149,
"downloadURL": "https://github.com/swaggyP36000/TrollStore-IPAs/releases/download/06-24-2023/BHX-3.9.1-9.63.ipa",
"developerName": "BandarHL / AppDB / Manpreet Singh @thisismanpreeets / DPixel / CydiaAbdullah / zxcvbn's tweaked IPAs / TrollStore AppsUpdates / nowesr1 / Sultan Mods / binnichtaktiv's iPA Library / nowesr1",
"localizedDescription": "Twitter, with added features such as custom fonts, video saving, no ads, tabs customization, and more!\nLast updated: 09-06-2024\nStatus: \u2705 \ud83d\udc4d",
"iconURL": "https://raw.githubusercontent.com/swaggyP36000/TrollStore-IPAs/main/icons/com.atebits.Tweetie2.png"
},
{
"name": "DLTwitter",
"bundleIdentifier": "com.atebits.Tweetie2",
"version": "9.63",
"versionDate": "2023-06-25",
"size": 101043915,
"downloadURL": "https://github.com/swaggyP36000/TrollStore-IPAs/releases/download/06-24-2023/DLTwitter-9.63.ipa",
"developerName": "CydiaAbdullah / IPA Fire / FayezUpdates / nowesr1",
"localizedDescription": "Requires a license. EOL for iOS 14.x. I will no longer be able to test new IPAs. For the last iOS 14 compatible version of BHTwitter, grab it from the 02-11-2023 release. Kinda like DLTikTok, for Twitter. Features include downloading videos, confirm follows & likes/unlikes, disabling typing indicator in DMs, browsing accounts that blocked you, remove ads, etc. Update this from other sources at your own risk, it's a pain in the ass to get it working if a newer version gives you the \"unlicensed\" error. I test these IPAs myself before uploading.\nLast updated: 08-14-2024\nStatus: \u2705",
"iconURL": "https://raw.githubusercontent.com/swaggyP36000/TrollStore-IPAs/main/icons/com.atebits.Tweetie2.png"
},
{
"name": "FacebookWolf",
"bundleIdentifier": "com.facebook.Facebook",
"version": "418.0",
"versionDate": "2023-06-25",
"size": 150521266,
"downloadURL": "https://github.com/swaggyP36000/TrollStore-IPAs/releases/download/06-24-2023/FacebookWolf-418.0.ipa",
"developerName": "CyPwn IPA Library / Manpreet Singh @thisismanpreets / FayezUpdates / DPixel / CydiaAbdullah / iApps / Clement \uea00 / binnichtaktiv's iPA Library",
"localizedDescription": "Facebook, injected with Wolf for Facebook by Michael Lema.\nLast updated: 09-06-2024\nStatus: \u2705",
"iconURL": "https://raw.githubusercontent.com/swaggyP36000/TrollStore-IPAs/main/icons/com.facebook.Facebook.png"
},
{
"name": "InfusePro",
"bundleIdentifier": "com.firecore.infuse",
"version": "7.5.6",
"versionDate": "2023-06-25",
"size": 42285212,
"downloadURL": "https://github.com/swaggyP36000/TrollStore-IPAs/releases/download/06-24-2023/InfusePro-7.5.6.ipa",
"developerName": "Suffuse-Team / InfusePlus",
"localizedDescription": "Injected with InfusePlus by dayanch96. Fancy media/video player, cracked for premium. Full app description here\nLast updated: 09-07-2024\nStatus: \u2705 \ud83d\udd35 \ud83d\udc4d",
"iconURL": "https://raw.githubusercontent.com/swaggyP36000/TrollStore-IPAs/main/icons/com.firecore.infuse.png"
},
{
"name": "InShotPro",
"bundleIdentifier": "com.camerasideas.InstaShot",
"version": "1.69.1",
"versionDate": "2023-06-25",
"size": 85111276,
"downloadURL": "https://github.com/swaggyP36000/TrollStore-IPAs/releases/download/06-24-2023/InShotPro-1.69.1.ipa",
"developerName": "AppDB / DPixel / iApps / FayezUpdates / Manpreet Singh @thisismanpreets / zxcvbn\u2019s tweaked IPAs",
"localizedDescription": "Popular video/image editor with pro features unlocked.\nLast updated: 09-05-2024\nStatus: \u2705",
"iconURL": "https://raw.githubusercontent.com/swaggyP36000/TrollStore-IPAs/main/icons/com.camerasideas.InstaShot.png"
},
{
"name": "InstagramElite",
"bundleIdentifier": "com.burbn.instagram",
"version": "287.0",
"versionDate": "2023-06-25",
"size": 121405906,
"downloadURL": "https://github.com/swaggyP36000/TrollStore-IPAs/releases/download/06-24-2023/InstagramElite-287.0.ipa",
"developerName": "DarkWebUser / MeemNon / zxcvbn's tweaked IPAs",
"localizedDescription": "Instagram, injected with Rocket Cracked and DLInsta/ DLInsta's media downloading is hit-and-miss depending on the post, so keep that disabled and use Rocket's media saving toggles. For all other settings, you can pick and choose which tweak you want to do what. To activate Rocket, follow these steps\nLast updated: 06-28-2023\nStatus: \u274c",
"iconURL": "https://raw.githubusercontent.com/swaggyP36000/TrollStore-IPAs/main/icons/com.burbn.instagram.png"
},
{
"name": "InstaRocketCracked",
"bundleIdentifier": "com.burbn.instagram",
"version": "288.1",
"versionDate": "2023-06-25",
"size": 148197831,
"downloadURL": "https://github.com/swaggyP36000/TrollStore-IPAs/releases/download/06-24-2023/InstaRocketCracked-288.1.ipa",
"developerName": "AppDB / DarkWebUser / DPixel / Manpreet Singh @thisismanpreets / nowesr1 / zxcvbn's tweaked IPAs",
"localizedDescription": "Instagram, injected with Rocket Cracked (no ad banner, all features functional). To activate Rocket, follow these steps.\nLast updated: 09-10-2024\nStatus: \u2705 \u2b50",
"iconURL": "https://raw.githubusercontent.com/swaggyP36000/TrollStore-IPAs/main/icons/com.burbn.instagram.png"
},
{
"name": "InstaRocketPlus",
"bundleIdentifier": "com.burbn.instagram",
"version": "287.0",
"versionDate": "2023-06-25",
"size": 134624715,
"downloadURL": "https://github.com/swaggyP36000/TrollStore-IPAs/releases/download/06-24-2023/InstaRocketPlus-287.0.ipa",
"developerName": "CyPwn IPA Library / DPixel / DarkWebUser / Manpreet Singh @thisismanpreets",
"localizedDescription": "Instagram, injected with Rocket and Plus for Instagram cracked. If you use the friendship status checker, enable the one from Rocket settings. The one by Plus for Instagram is broken and will cause app crashes in newer versions of Instagram. To activate Rocket, follow these steps\nLast updated: 12-10-2023\nStatus: \u26a0\ufe0f",
"iconURL": "https://raw.githubusercontent.com/swaggyP36000/TrollStore-IPAs/main/icons/com.burbn.instagram.png"
},
{
"name": "Nicegram",
"bundleIdentifier": "app.nicegram",
"version": "1.3.2",
"versionDate": "2023-06-25",
"size": 70531970,
"downloadURL": "https://github.com/swaggyP36000/TrollStore-IPAs/releases/download/06-24-2023/Nicegram-1.3.2.ipa",
"developerName": "CyPwn IPA Library / AppDB / IPA Library / MeemNon / DPixel / zxcvbn\u2019s tweaked IPAs / iOS Tutorials + App Cracks",
"localizedDescription": "Nicegram, cracked for premium features (including having the translate button next to messages in chats). In order to unlock Premium, click on \"Assistant\" at the bottom, then on \"Unleash your Nicegram perks\" and finally click on \"start\" at the bottom. Note: I highly recommend switching to Swiftgram.\nLast updated: 09-05-2024\nStatus: \u2705",
"iconURL": "https://raw.githubusercontent.com/swaggyP36000/TrollStore-IPAs/main/icons/app.nicegram.png"
},
{
"name": "PhotomathPlus",
"bundleIdentifier": "com.microblink.PhotoMath",
"version": "8.25.0",
"versionDate": "2023-06-25",
"size": 13939748,
"downloadURL": "https://github.com/swaggyP36000/TrollStore-IPAs/releases/download/06-24-2023/PhotomathPlus-8.25.0.ipa",
"developerName": "DPixel / IPA Fire / zxcvbn\u2019s tweaked IPAs",
"localizedDescription": "Photomath, with pro features unlocked.\nLast updated: 08-21-2024\nStatus: \u2705",
"iconURL": "https://raw.githubusercontent.com/swaggyP36000/TrollStore-IPAs/main/icons/com.microblink.PhotoMath.png"
},
{
"name": "SharkForMessenger",
"bundleIdentifier": "com.facebook.Messenger",
"version": "411.0",
"versionDate": "2023-06-25",
"size": 57632555,
"downloadURL": "https://github.com/swaggyP36000/TrollStore-IPAs/releases/download/06-24-2023/SharkForMessenger-411.0.ipa",
"developerName": "ipahost / CyPwn IPA Library / CydiaAbdullah / FayezUpdates",
"localizedDescription": "Messenger, injected with Shark by Michael Lema\nLast updated: 06-24-2023\nStatus: \u26a0\ufe0f",
"iconURL": "https://raw.githubusercontent.com/swaggyP36000/TrollStore-IPAs/main/icons/com.facebook.Messenger.png"
},
{
"name": "ShowMania",
"bundleIdentifier": "com.showmania.co",
"version": "2.0",
"versionDate": "2023-06-25",
"size": 10786654,
"downloadURL": "https://github.com/swaggyP36000/TrollStore-IPAs/releases/download/06-24-2023/ShowMania-2.0.ipa",
"developerName": "DPixel / Manpreet Singh @thisismanpreets",
"localizedDescription": "Yet another HDO Play under a different name, modded for no ads\nLast updated: 06-25-2023\nStatus: \u26a0\ufe0f",
"iconURL": "https://raw.githubusercontent.com/swaggyP36000/TrollStore-IPAs/main/icons/com.showmania.co.png"
},
{
"name": "SpeedTestPremium",
"bundleIdentifier": "com.ookla.speedtest",
"version": "5.0.1",
"versionDate": "2023-06-25",
"size": 49491953,
"downloadURL": "https://github.com/swaggyP36000/TrollStore-IPAs/releases/download/06-24-2023/SpeedTestPremium-5.0.1.ipa",
"developerName": "CyPwn IPA Library / Manpreet Singh @thisismanpreets",
"localizedDescription": "By Ookla, with premium features.\nLast updated: 09-01-2024\nStatus: \u2705",
"iconURL": "https://raw.githubusercontent.com/swaggyP36000/TrollStore-IPAs/main/icons/com.ookla.speedtest.png"
},
{
"name": "Spotilife",
"bundleIdentifier": "com.spotify.client",
"version": "8.8.42",
"versionDate": "2023-06-25",
"size": 76001742,
"downloadURL": "https://github.com/swaggyP36000/TrollStore-IPAs/releases/download/06-24-2023/Spotilife-8.8.42.ipa",
"developerName": "Manpreet Singh @thisismanpreets / Spotilife IPAs / Spotify iOS",
"localizedDescription": "This version has support for CarPlay when installed via TrollStore.\nLast updated: 04-20-2024\nStatus: \u274c",
"iconURL": "https://raw.githubusercontent.com/swaggyP36000/TrollStore-IPAs/main/icons/com.spotify.client.png"
},
{
"name": "TikTokDark",
"bundleIdentifier": "com.zhiliaoapp.musically",
"version": "30.0.0",
"versionDate": "2023-06-25",
"size": 222929008,
"downloadURL": "https://github.com/swaggyP36000/TrollStore-IPAs/releases/download/06-24-2023/TikTokDark-30.0.0.ipa",
"developerName": "Manpreet Singh @thisismanpreets / AppDB / DPixel / FayezUpdates / iApps / zxcvbn's tweaked IPAs / nowesr1",
"localizedDescription": "Alternative to DLTikTok with similar features. If you don't see a settings option for Dark, click the empty space at the top right of the TikTok settings page. It's an invisible button\nLast updated: 08-31-2024\nStatus: \u2705",
"iconURL": "https://raw.githubusercontent.com/swaggyP36000/TrollStore-IPAs/main/icons/com.zhiliaoapp.musically.png"
},
{
"name": "TikTokDarkTouch",
"bundleIdentifier": "com.zhiliaoapp.musically",
"version": "29.9.0",
"versionDate": "2023-06-25",
"size": 167167689,
"downloadURL": "https://github.com/swaggyP36000/TrollStore-IPAs/releases/download/06-24-2023/TikTokDarkTouch-29.9.0.ipa",
"developerName": "DPixel / FayezUpdates / KAMO HACkS",
"localizedDescription": "TikTokDark, with an auto-clicker. AutoTouch tutorial, courtesy of DPixel If you don't see a settings option for Dark, click the empty space at the top right of the TikTok settings page. It's an invisible button\nLast updated: 06-24-2023\nStatus: \u274c",
"iconURL": "https://raw.githubusercontent.com/swaggyP36000/TrollStore-IPAs/main/icons/com.zhiliaoapp.musically.png"
},
{
"name": "TikTokLRD",
"bundleIdentifier": "com.zhiliaoapp.musically",
"version": "30.0.0",
"versionDate": "2023-06-25",
"size": 236684111,
"downloadURL": "https://github.com/swaggyP36000/TrollStore-IPAs/releases/download/06-24-2023/TikTokLRD-30.0.0.ipa",
"developerName": "zxcvbn\u2019s tweaked IPAs / Manpreet Singh @thisismanpreeets / nowesr1",
"localizedDescription": "TikTok, injected with a version of TikTokLRD (3.5).\nLast updated: 09-07-2024\nStatus: \u2705",
"iconURL": "https://raw.githubusercontent.com/swaggyP36000/TrollStore-IPAs/main/icons/com.zhiliaoapp.musically.png"
},
{
"name": "TwitchPlus",
"bundleIdentifier": "tv.twitch",
"version": "15.4",
"versionDate": "2023-06-25",
"size": 58339050,
"downloadURL": "https://github.com/swaggyP36000/TrollStore-IPAs/releases/download/06-24-2023/TwitchPlus-15.4.ipa",
"developerName": "AppDB / DPixel / zxcvbn's tweaked IPAs / level3tjg / Ed0.ipa / ArianaMinajj",
"localizedDescription": "Alternative to Twitch Toolbox, Twitch with no ads.\nLast updated: 09-04-2024\nStatus: \u2705 \u2b50",
"iconURL": "https://raw.githubusercontent.com/swaggyP36000/TrollStore-IPAs/main/icons/tv.twitch.png"
},
{
"name": "TwitchToolbox",
"bundleIdentifier": "tv.twitch",
"version": "15.4",
"versionDate": "2023-06-25",
"size": 83133709,
"downloadURL": "https://github.com/swaggyP36000/TrollStore-IPAs/releases/download/06-24-2023/TwitchToolbox-15.4.ipa",
"developerName": "AppDB / DPixel",
"localizedDescription": "Twitch, with added features including theme support, auto claiming channel points, adblock, and third party emote support\nLast updated: 06-04-2023\nStatus: \u26a0\ufe0f",
"iconURL": "https://raw.githubusercontent.com/swaggyP36000/TrollStore-IPAs/main/icons/tv.twitch.png"
},
{
"name": "Aidoku",
"bundleIdentifier": "xyz.skitty.Aidoku",
"version": "0.6.3",
"versionDate": "2023-06-04",
"size": 5571433,
"downloadURL": "https://github.com/swaggyP36000/TrollStore-IPAs/releases/download/06-04-2023/Aidoku-0.6.3.ipa",
"developerName": "Aidoku",
"localizedDescription": "Webtoon/manga browser\nLast updated: 08-18-2024\nStatus: \u2705",
"iconURL": "https://raw.githubusercontent.com/swaggyP36000/TrollStore-IPAs/main/icons/xyz.skitty.Aidoku.png"
},
{
"name": "BHX",
"bundleIdentifier": "com.atebits.Tweetie2",
"version": "9.60-3.9.1",
"versionDate": "2023-06-04",
"size": 85496985,
"downloadURL": "https://github.com/swaggyP36000/TrollStore-IPAs/releases/download/06-04-2023/BHX-9.60-3.9.1.ipa",
"developerName": "BandarHL / AppDB / Manpreet Singh @thisismanpreeets / DPixel / CydiaAbdullah / zxcvbn's tweaked IPAs / TrollStore AppsUpdates / nowesr1 / Sultan Mods / binnichtaktiv's iPA Library / nowesr1",
"localizedDescription": "Twitter, with added features such as custom fonts, video saving, no ads, tabs customization, and more!\nLast updated: 09-06-2024\nStatus: \u2705 \ud83d\udc4d",
"iconURL": "https://raw.githubusercontent.com/swaggyP36000/TrollStore-IPAs/main/icons/com.atebits.Tweetie2.png"
},
{
"name": "BlackHole",
"bundleIdentifier": "com.shadow.blackhole1160.ios",
"version": "1.15.8",
"versionDate": "2023-06-04",
"size": 28702109,
"downloadURL": "https://github.com/swaggyP36000/TrollStore-IPAs/releases/download/06-04-2023/BlackHole-1.15.8.ipa",
"developerName": "Sangwan5688",
"localizedDescription": "Music player with a very nice UI that streams from YouTube Music. Supports downloading, playlist creation, playlist imports, app backups, etc.\nLast updated: 03-06-2024\nStatus: \u274c",
"iconURL": "https://raw.githubusercontent.com/swaggyP36000/TrollStore-IPAs/main/icons/com.shadow.blackhole1160.ios.png"
},
{
"name": "Cowabunga",
"bundleIdentifier": "com.leemin.Cowabunga",
"version": "10.3.2",
"versionDate": "2023-06-04",
"size": 16288960,
"downloadURL": "https://github.com/swaggyP36000/TrollStore-IPAs/releases/download/06-04-2023/Cowabunga-10.3.2.ipa",
"developerName": "leminlimez",
"localizedDescription": "If you're using a device with a home button, please read this. A Jailed toolbox application for iOS 14.0-16.1.2 using CVE-2022-46689. Changes are permanent on iOS 14-14.8.1, use at your own risk\nLast updated: 06-04-2023\nStatus: \u274c",
"iconURL": "https://raw.githubusercontent.com/swaggyP36000/TrollStore-IPAs/main/icons/com.leemin.Cowabunga.png"
},
{
"name": "Enmity",
"bundleIdentifier": "com.hammerandchisel.discord",
"version": "2.2.6-180.0",
"versionDate": "2023-06-04",
"size": 98676455,
"downloadURL": "https://github.com/swaggyP36000/TrollStore-IPAs/releases/download/06-04-2023/Enmity-2.2.6-180.0.ipa",
"developerName": "CyPwn IPA Library / Enmity Team / zxcvbn's tweaked IPAs",
"localizedDescription": "Discord, injected with the popular tweak Enmity!\nLast updated: 09-13-2024\nStatus: \u2705",
"iconURL": "https://raw.githubusercontent.com/swaggyP36000/TrollStore-IPAs/main/icons/com.hammerandchisel.discord.png"
},
{
"name": "InfusePro",
"bundleIdentifier": "com.firecore.infuse",
"version": "7.5.5",
"versionDate": "2023-06-04",
"size": 40271379,
"downloadURL": "https://github.com/swaggyP36000/TrollStore-IPAs/releases/download/06-04-2023/InfusePro-7.5.5.ipa",
"developerName": "Suffuse-Team / InfusePlus",
"localizedDescription": "Injected with InfusePlus by dayanch96. Fancy media/video player, cracked for premium. Full app description here\nLast updated: 09-07-2024\nStatus: \u2705 \ud83d\udd35 \ud83d\udc4d",
"iconURL": "https://raw.githubusercontent.com/swaggyP36000/TrollStore-IPAs/main/icons/com.firecore.infuse.png"
},
{
"name": "InShotPro",
"bundleIdentifier": "com.camerasideas.InstaShot",
"version": "1.68.1",
"versionDate": "2023-06-04",
"size": 101692931,
"downloadURL": "https://github.com/swaggyP36000/TrollStore-IPAs/releases/download/06-04-2023/InShotPro-1.68.1.ipa",
"developerName": "AppDB / DPixel / iApps / FayezUpdates / Manpreet Singh @thisismanpreets / zxcvbn\u2019s tweaked IPAs",
"localizedDescription": "Popular video/image editor with pro features unlocked.\nLast updated: 09-05-2024\nStatus: \u2705",
"iconURL": "https://raw.githubusercontent.com/swaggyP36000/TrollStore-IPAs/main/icons/com.camerasideas.InstaShot.png"
},
{
"name": "InstagramElite",
"bundleIdentifier": "com.burbn.instagram",
"version": "285.0",
"versionDate": "2023-06-04",
"size": 117848712,
"downloadURL": "https://github.com/swaggyP36000/TrollStore-IPAs/releases/download/06-04-2023/InstagramElite-285.0.ipa",
"developerName": "DarkWebUser / MeemNon / zxcvbn's tweaked IPAs",
"localizedDescription": "Instagram, injected with Rocket Cracked and DLInsta/ DLInsta's media downloading is hit-and-miss depending on the post, so keep that disabled and use Rocket's media saving toggles. For all other settings, you can pick and choose which tweak you want to do what. To activate Rocket, follow these steps\nLast updated: 06-28-2023\nStatus: \u274c",
"iconURL": "https://raw.githubusercontent.com/swaggyP36000/TrollStore-IPAs/main/icons/com.burbn.instagram.png"
},
{
"name": "iPoGo",
"bundleIdentifier": "com.nianticlabs.pokemongo",
"version": "2.9.3",
"versionDate": "2023-06-04",
"size": 123882886,
"downloadURL": "https://github.com/swaggyP36000/TrollStore-IPAs/releases/download/06-04-2023/iPoGo-2.9.3.ipa",
"developerName": "ipogo",
"localizedDescription": "Pokemon GO with a bunch of cheats, including joystick-to-walk, increased catch accuracy, sniping, teleporting, etc. USE RESPONSIBLY, OVERUSE CAN GET YOU BANNED.\nLast updated: 09-09-2024\nStatus: \u2705",
"iconURL": "https://raw.githubusercontent.com/swaggyP36000/TrollStore-IPAs/main/icons/com.nianticlabs.pokemongo.png"
},
{
"name": "Nicegram",
"bundleIdentifier": "app.nicegram",
"version": "1.3.1",
"versionDate": "2023-06-04",
"size": 64512781,
"downloadURL": "https://github.com/swaggyP36000/TrollStore-IPAs/releases/download/06-04-2023/Nicegram-1.3.1.ipa",
"developerName": "CyPwn IPA Library / AppDB / IPA Library / MeemNon / DPixel / zxcvbn\u2019s tweaked IPAs / iOS Tutorials + App Cracks",
"localizedDescription": "Nicegram, cracked for premium features (including having the translate button next to messages in chats). In order to unlock Premium, click on \"Assistant\" at the bottom, then on \"Unleash your Nicegram perks\" and finally click on \"start\" at the bottom. Note: I highly recommend switching to Swiftgram.\nLast updated: 09-05-2024\nStatus: \u2705",
"iconURL": "https://raw.githubusercontent.com/swaggyP36000/TrollStore-IPAs/main/icons/app.nicegram.png"
},
{
"name": "PicsArtPlusPlus",
"bundleIdentifier": "com.picsart.studio",
"version": "22.4.4",
"versionDate": "2023-06-04",
"size": 94135314,
"downloadURL": "https://github.com/swaggyP36000/TrollStore-IPAs/releases/download/06-04-2023/PicsArtPlusPlus-22.4.4.ipa",
"developerName": "zxcvbn\u2019s tweaked IPAs / AppDB / CyPwn IPA Library / DPixel / Manpreet Singh @thisismanpreets / Qamislo - Apps / binnichtaktiv's iPA Library",
"localizedDescription": "PicsArt with premium features enbled.\nLast updated: 08-25-2024\nStatus: \u2705 \ud83d\udc4d \u2b50",
"iconURL": "https://raw.githubusercontent.com/swaggyP36000/TrollStore-IPAs/main/icons/com.picsart.studio.png"
},
{
"name": "Spotilife",
"bundleIdentifier": "com.spotify.client",
"version": "8.8.40",
"versionDate": "2023-06-04",
"size": 60750670,
"downloadURL": "https://github.com/swaggyP36000/TrollStore-IPAs/releases/download/06-04-2023/Spotilife-8.8.40.ipa",
"developerName": "Manpreet Singh @thisismanpreets / Spotilife IPAs / Spotify iOS",
"localizedDescription": "This version has support for CarPlay when installed via TrollStore.\nLast updated: 04-20-2024\nStatus: \u274c",
"iconURL": "https://raw.githubusercontent.com/swaggyP36000/TrollStore-IPAs/main/icons/com.spotify.client.png"
},
{
"name": "StarVPNPlus",
"bundleIdentifier": "com.peach.app",
"version": "3.7.0",
"versionDate": "2023-06-04",
"size": 8519310,
"downloadURL": "https://github.com/swaggyP36000/TrollStore-IPAs/releases/download/06-04-2023/StarVPNPlus-3.7.0.ipa",
"developerName": "CyPwn IPA Library / AppDB",
"localizedDescription": "Star VPN with pro features unlocked\nLast updated: 06-04-2023\nStatus: \u26a0\ufe0f",
"iconURL": "https://raw.githubusercontent.com/swaggyP36000/TrollStore-IPAs/main/icons/com.peach.app.png"
},
{
"name": "TikTokDark",
"bundleIdentifier": "com.zhiliaoapp.musically",
"version": "29.7.0",
"versionDate": "2023-06-04",
"size": 165357200,
"downloadURL": "https://github.com/swaggyP36000/TrollStore-IPAs/releases/download/06-04-2023/TikTokDark-29.7.0.ipa",
"developerName": "Manpreet Singh @thisismanpreets / AppDB / DPixel / FayezUpdates / iApps / zxcvbn's tweaked IPAs / nowesr1",
"localizedDescription": "Alternative to DLTikTok with similar features. If you don't see a settings option for Dark, click the empty space at the top right of the TikTok settings page. It's an invisible button\nLast updated: 08-31-2024\nStatus: \u2705",
"iconURL": "https://raw.githubusercontent.com/swaggyP36000/TrollStore-IPAs/main/icons/com.zhiliaoapp.musically.png"
},
{
"name": "TikTokLRD",
"bundleIdentifier": "com.zhiliaoapp.musically",
"version": "29.7.0",
"versionDate": "2023-06-04",
"size": 224380328,
"downloadURL": "https://github.com/swaggyP36000/TrollStore-IPAs/releases/download/06-04-2023/TikTokLRD-29.7.0.ipa",
"developerName": "zxcvbn\u2019s tweaked IPAs / Manpreet Singh @thisismanpreeets / nowesr1",
"localizedDescription": "TikTok, injected with a version of TikTokLRD (3.5).\nLast updated: 09-07-2024\nStatus: \u2705",
"iconURL": "https://raw.githubusercontent.com/swaggyP36000/TrollStore-IPAs/main/icons/com.zhiliaoapp.musically.png"
},
{
"name": "Cowabunga",
"bundleIdentifier": "com.leemin.Cowabunga",
"version": "10.3.0",
"versionDate": "2023-05-29",
"size": 16285936,
"downloadURL": "https://github.com/swaggyP36000/TrollStore-IPAs/releases/download/05-29-2023/Cowabunga-10.3.0.ipa",
"developerName": "leminlimez",
"localizedDescription": "If you're using a device with a home button, please read this. A Jailed toolbox application for iOS 14.0-16.1.2 using CVE-2022-46689. Changes are permanent on iOS 14-14.8.1, use at your own risk\nLast updated: 06-04-2023\nStatus: \u274c",
"iconURL": "https://raw.githubusercontent.com/swaggyP36000/TrollStore-IPAs/main/icons/com.leemin.Cowabunga.png"
},
{
"name": "PicsArtPlusPlus",
"bundleIdentifier": "com.picsart.studio",
"version": "22.3.5",
"versionDate": "2023-05-29",
"size": 94718889,
"downloadURL": "https://github.com/swaggyP36000/TrollStore-IPAs/releases/download/05-29-2023/PicsArtPlusPlus-22.3.5.ipa",
"developerName": "zxcvbn\u2019s tweaked IPAs / AppDB / CyPwn IPA Library / DPixel / Manpreet Singh @thisismanpreets / Qamislo - Apps / binnichtaktiv's iPA Library",
"localizedDescription": "PicsArt with premium features enbled.\nLast updated: 08-25-2024\nStatus: \u2705 \ud83d\udc4d \u2b50",
"iconURL": "https://raw.githubusercontent.com/swaggyP36000/TrollStore-IPAs/main/icons/com.picsart.studio.png"
},
{
"name": "TikTokDark",
"bundleIdentifier": "com.zhiliaoapp.musically",
"version": "29.6.0",
"versionDate": "2023-05-29",
"size": 164606635,
"downloadURL": "https://github.com/swaggyP36000/TrollStore-IPAs/releases/download/05-29-2023/TikTokDark-29.6.0.ipa",
"developerName": "Manpreet Singh @thisismanpreets / AppDB / DPixel / FayezUpdates / iApps / zxcvbn's tweaked IPAs / nowesr1",
"localizedDescription": "Alternative to DLTikTok with similar features. If you don't see a settings option for Dark, click the empty space at the top right of the TikTok settings page. It's an invisible button\nLast updated: 08-31-2024\nStatus: \u2705",
"iconURL": "https://raw.githubusercontent.com/swaggyP36000/TrollStore-IPAs/main/icons/com.zhiliaoapp.musically.png"
},
{
"name": "BHX",
"bundleIdentifier": "com.atebits.Tweetie2",
"version": "9.59-3.9.1",
"versionDate": "2023-05-24",
"size": 85369199,
"downloadURL": "https://github.com/swaggyP36000/TrollStore-IPAs/releases/download/05-24-2023/BHX-9.59-3.9.1.ipa",
"developerName": "BandarHL / AppDB / Manpreet Singh @thisismanpreeets / DPixel / CydiaAbdullah / zxcvbn's tweaked IPAs / TrollStore AppsUpdates / nowesr1 / Sultan Mods / binnichtaktiv's iPA Library / nowesr1",
"localizedDescription": "Twitter, with added features such as custom fonts, video saving, no ads, tabs customization, and more!\nLast updated: 09-06-2024\nStatus: \u2705 \ud83d\udc4d",
"iconURL": "https://raw.githubusercontent.com/swaggyP36000/TrollStore-IPAs/main/icons/com.atebits.Tweetie2.png"
},
{
"name": "DLTikTok",
"bundleIdentifier": "com.zhiliaoapp.musically",
"version": "29.5.0",
"versionDate": "2023-05-24",
"size": 158586010,
"downloadURL": "https://github.com/swaggyP36000/TrollStore-IPAs/releases/download/05-24-2023/DLTikTok-29.5.0.ipa",
"developerName": "AppDB / CydiaAbdullah / KZStore* / nowesr1",
"localizedDescription": "Requires a license. TikTok, enhanced with features including no-watermark video saving, clear UI mode, no ads, etc.\nLast updated: 07-09-2024\nStatus: \u2705",
"iconURL": "https://raw.githubusercontent.com/swaggyP36000/TrollStore-IPAs/main/icons/com.zhiliaoapp.musically.png"
},
{
"name": "DLTwitter",
"bundleIdentifier": "com.atebits.Tweetie2",
"version": "9.58.1",
"versionDate": "2023-05-24",
"size": 94293200,
"downloadURL": "https://github.com/swaggyP36000/TrollStore-IPAs/releases/download/05-24-2023/DLTwitter-9.58.1.ipa",
"developerName": "CydiaAbdullah / IPA Fire / FayezUpdates / nowesr1",
"localizedDescription": "Requires a license. EOL for iOS 14.x. I will no longer be able to test new IPAs. For the last iOS 14 compatible version of BHTwitter, grab it from the 02-11-2023 release. Kinda like DLTikTok, for Twitter. Features include downloading videos, confirm follows & likes/unlikes, disabling typing indicator in DMs, browsing accounts that blocked you, remove ads, etc. Update this from other sources at your own risk, it's a pain in the ass to get it working if a newer version gives you the \"unlicensed\" error. I test these IPAs myself before uploading.\nLast updated: 08-14-2024\nStatus: \u2705",
"iconURL": "https://raw.githubusercontent.com/swaggyP36000/TrollStore-IPAs/main/icons/com.atebits.Tweetie2.png"
},
{
"name": "FacebookWolf",
"bundleIdentifier": "com.facebook.Facebook",
"version": "415.1",
"versionDate": "2023-05-24",
"size": 128531017,
"downloadURL": "https://github.com/swaggyP36000/TrollStore-IPAs/releases/download/05-24-2023/FacebookWolf-415.1.ipa",
"developerName": "CyPwn IPA Library / Manpreet Singh @thisismanpreets / FayezUpdates / DPixel / CydiaAbdullah / iApps / Clement \uea00 / binnichtaktiv's iPA Library",
"localizedDescription": "Facebook, injected with Wolf for Facebook by Michael Lema.\nLast updated: 09-06-2024\nStatus: \u2705",
"iconURL": "https://raw.githubusercontent.com/swaggyP36000/TrollStore-IPAs/main/icons/com.facebook.Facebook.png"
},
{
"name": "iPoGo",
"bundleIdentifier": "com.nianticlabs.pokemongo",
"version": "2.9.2",
"versionDate": "2023-05-24",
"size": 123750627,
"downloadURL": "https://github.com/swaggyP36000/TrollStore-IPAs/releases/download/05-24-2023/iPoGo-2.9.2.ipa",
"developerName": "ipogo",
"localizedDescription": "Pokemon GO with a bunch of cheats, including joystick-to-walk, increased catch accuracy, sniping, teleporting, etc. USE RESPONSIBLY, OVERUSE CAN GET YOU BANNED.\nLast updated: 09-09-2024\nStatus: \u2705",
"iconURL": "https://raw.githubusercontent.com/swaggyP36000/TrollStore-IPAs/main/icons/com.nianticlabs.pokemongo.png"
},
{
"name": "MovieBoxPro",
"bundleIdentifier": "com.xd.mbp31",
"version": "12.5",
"versionDate": "2023-05-24",
"size": 139758301,
"downloadURL": "https://github.com/swaggyP36000/TrollStore-IPAs/releases/download/05-24-2023/MovieBoxPro-12.5.ipa",
"developerName": "AppDB / DPixel / IPA Fire",
"localizedDescription": "MovieBoxPro, without ads\nLast updated: 01-20-2024\nStatus: \u2705",
"iconURL": "https://raw.githubusercontent.com/swaggyP36000/TrollStore-IPAs/main/icons/com.xd.mbp31.png"
},
{
"name": "Nicegram",
"bundleIdentifier": "app.nicegram",
"version": "1.2.9",
"versionDate": "2023-05-24",
"size": 64992543,
"downloadURL": "https://github.com/swaggyP36000/TrollStore-IPAs/releases/download/05-24-2023/Nicegram-1.2.9.ipa",
"developerName": "CyPwn IPA Library / AppDB / IPA Library / MeemNon / DPixel / zxcvbn\u2019s tweaked IPAs / iOS Tutorials + App Cracks",
"localizedDescription": "Nicegram, cracked for premium features (including having the translate button next to messages in chats). In order to unlock Premium, click on \"Assistant\" at the bottom, then on \"Unleash your Nicegram perks\" and finally click on \"start\" at the bottom. Note: I highly recommend switching to Swiftgram.\nLast updated: 09-05-2024\nStatus: \u2705",
"iconURL": "https://raw.githubusercontent.com/swaggyP36000/TrollStore-IPAs/main/icons/app.nicegram.png"
},
{
"name": "PhotomathPlus",
"bundleIdentifier": "com.microblink.PhotoMath",
"version": "8.24.0",
"versionDate": "2023-05-24",
"size": 13704658,
"downloadURL": "https://github.com/swaggyP36000/TrollStore-IPAs/releases/download/05-24-2023/PhotomathPlus-8.24.0.ipa",
"developerName": "DPixel / IPA Fire / zxcvbn\u2019s tweaked IPAs",
"localizedDescription": "Photomath, with pro features unlocked.\nLast updated: 08-21-2024\nStatus: \u2705",
"iconURL": "https://raw.githubusercontent.com/swaggyP36000/TrollStore-IPAs/main/icons/com.microblink.PhotoMath.png"
},
{
"name": "PhotoshopExpress",
"bundleIdentifier": "com.adobe.PSMobile",
"version": "23.19.0",
"versionDate": "2023-05-24",
"size": 123085415,
"downloadURL": "https://github.com/swaggyP36000/TrollStore-IPAs/releases/download/05-24-2023/PhotoshopExpress-23.19.0.ipa",
"developerName": "AppDB / FayezUpdates / iPAWiND / ipalibrary.me / Sultan Mods",
"localizedDescription": "Adobe's Photoshop Express, cracked for all premium features. except cloud storage\nLast updated: 08-29-2024\nStatus: \u2705",
"iconURL": "https://raw.githubusercontent.com/swaggyP36000/TrollStore-IPAs/main/icons/com.adobe.PSMobile.png"
},
{
"name": "SharkForMessenger",
"bundleIdentifier": "com.facebook.Messenger",
"version": "409.0",
"versionDate": "2023-05-24",
"size": 47247796,
"downloadURL": "https://github.com/swaggyP36000/TrollStore-IPAs/releases/download/05-24-2023/SharkForMessenger-409.0.ipa",
"developerName": "ipahost / CyPwn IPA Library / CydiaAbdullah / FayezUpdates",
"localizedDescription": "Messenger, injected with Shark by Michael Lema\nLast updated: 06-24-2023\nStatus: \u26a0\ufe0f",
"iconURL": "https://raw.githubusercontent.com/swaggyP36000/TrollStore-IPAs/main/icons/com.facebook.Messenger.png"
},
{
"name": "SnapchatFalcon",
"bundleIdentifier": "com.toyopagroup.picaboo",
"version": "12.35.0",
"versionDate": "2023-05-24",
"size": 105933742,
"downloadURL": "https://github.com/swaggyP36000/TrollStore-IPAs/releases/download/05-24-2023/SnapchatFalcon-12.35.0.ipa",
"developerName": "iCrackIPA / zxcvbn's tweaked IPAs / AppDB / m7 / RobsMods / riadipa",
"localizedDescription": "SNAPCHAT HAS NOW IMPLEMENTED NEW SIDELOADING DETECTION MEASURES, MAKING ALL MODIFIED VERSIONS OF SNAPCHAT DETECTABLE. AS A RESULT, NO SNAPCHAT TWEAK IS SAFE. IT IS ADVISED TO DISCONTINUE USING ANY SNAPCHAT TWEAKS TO AVOID THE RISK OF HAVING YOUR ACCOUNT/DEVICE BANNED.\nLast updated: 03-19-2024\nStatus: \u274c",
"iconURL": "https://raw.githubusercontent.com/swaggyP36000/TrollStore-IPAs/main/icons/com.toyopagroup.picaboo.png"
},
{
"name": "TwitchPlus",
"bundleIdentifier": "tv.twitch",
"version": "15.2.1",
"versionDate": "2023-05-24",