forked from Neoncat-OG/TrollStore-IPAs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
apps_esign.json
5947 lines (5947 loc) · 386 KB
/
apps_esign.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": "Neoncat-OG IPA Library",
"identifier": "xyz.hieuddo.ipalibrary",
"sourceURL": "https://raw.githubusercontent.com/Neoncat-OG/TrollStore-IPAs/main/apps.json",
"apps": [
{
"name": "InstoriesPro",
"bundleIdentifier": "ylee.studio.instories",
"version": "5.53.0",
"versionDate": "2024-10-03",
"size": 201750823,
"downloadURL": "https://github.com/Neoncat-OG/TrollStore-IPAs/releases/download/InstoriesPro/InstoriesPro-5.53.0.ipa",
"developerName": "IAppsBestLibrary",
"localizedDescription": "App to make professional designs effortlessly with Instories through just a few taps. A user requested it so here it is.\nLast updated: 08-12-2024\nStatus: \u2705",
"iconURL": "https://raw.githubusercontent.com/Neoncat-OG/TrollStore-IPAs/main/icons/ylee.studio.instories.png"
},
{
"name": "InstoriesPro",
"bundleIdentifier": "ylee.studio.instories",
"version": "5.54.1",
"versionDate": "2024-10-03",
"size": 206379615,
"downloadURL": "https://github.com/Neoncat-OG/TrollStore-IPAs/releases/download/InstoriesPro/InstoriesPro-5.54.1.ipa",
"developerName": "IAppsBestLibrary",
"localizedDescription": "App to make professional designs effortlessly with Instories through just a few taps. A user requested it so here it is.\nLast updated: 08-12-2024\nStatus: \u2705",
"iconURL": "https://raw.githubusercontent.com/Neoncat-OG/TrollStore-IPAs/main/icons/ylee.studio.instories.png"
},
{
"name": "InstoriesPro",
"bundleIdentifier": "ylee.studio.instories",
"version": "5.57.0",
"versionDate": "2024-10-03",
"size": 207567660,
"downloadURL": "https://github.com/Neoncat-OG/TrollStore-IPAs/releases/download/InstoriesPro/InstoriesPro-5.57.0.ipa",
"developerName": "IAppsBestLibrary",
"localizedDescription": "App to make professional designs effortlessly with Instories through just a few taps. A user requested it so here it is.\nLast updated: 08-12-2024\nStatus: \u2705",
"iconURL": "https://raw.githubusercontent.com/Neoncat-OG/TrollStore-IPAs/main/icons/ylee.studio.instories.png"
},
{
"name": "InstoriesPro",
"bundleIdentifier": "ylee.studio.instories",
"version": "5.60.0",
"versionDate": "2024-10-03",
"size": 207800804,
"downloadURL": "https://github.com/Neoncat-OG/TrollStore-IPAs/releases/download/InstoriesPro/InstoriesPro-5.60.0.ipa",
"developerName": "IAppsBestLibrary",
"localizedDescription": "App to make professional designs effortlessly with Instories through just a few taps. A user requested it so here it is.\nLast updated: 08-12-2024\nStatus: \u2705",
"iconURL": "https://raw.githubusercontent.com/Neoncat-OG/TrollStore-IPAs/main/icons/ylee.studio.instories.png"
},
{
"name": "InstoriesPro",
"bundleIdentifier": "ylee.studio.instories",
"version": "5.62.0",
"versionDate": "2024-10-03",
"size": 208466495,
"downloadURL": "https://github.com/Neoncat-OG/TrollStore-IPAs/releases/download/InstoriesPro/InstoriesPro-5.62.0.ipa",
"developerName": "IAppsBestLibrary",
"localizedDescription": "App to make professional designs effortlessly with Instories through just a few taps. A user requested it so here it is.\nLast updated: 08-12-2024\nStatus: \u2705",
"iconURL": "https://raw.githubusercontent.com/Neoncat-OG/TrollStore-IPAs/main/icons/ylee.studio.instories.png"
},
{
"name": "InstagramLRD",
"bundleIdentifier": "com.burbn.instagram",
"version": "250.0",
"versionDate": "2024-10-03",
"size": 103540796,
"downloadURL": "https://github.com/Neoncat-OG/TrollStore-IPAs/releases/download/InstagramLRD/InstagramLRD-250.0.ipa",
"developerName": "IPA Fire / nowesr1 / Manpreet Singh @thisismanpreets",
"localizedDescription": "Not cracked. If you've used TikTokLRD, imagine that but for Instagram. Features include media saving/sharing/previewing (stories included), show follow status, disable typing status, view DMs anonymously, disable ads, FaceID for account switching, etc.\nLast updated: 08-14-2024\nStatus: \u2705",
"iconURL": "https://raw.githubusercontent.com/Neoncat-OG/TrollStore-IPAs/main/icons/com.burbn.instagram.png"
},
{
"name": "InstagramLRD",
"bundleIdentifier": "com.burbn.instagram",
"version": "310.0.4",
"versionDate": "2024-10-03",
"size": 135010907,
"downloadURL": "https://github.com/Neoncat-OG/TrollStore-IPAs/releases/download/InstagramLRD/InstagramLRD-310.0.4.ipa",
"developerName": "IPA Fire / nowesr1 / Manpreet Singh @thisismanpreets",
"localizedDescription": "Not cracked. If you've used TikTokLRD, imagine that but for Instagram. Features include media saving/sharing/previewing (stories included), show follow status, disable typing status, view DMs anonymously, disable ads, FaceID for account switching, etc.\nLast updated: 08-14-2024\nStatus: \u2705",
"iconURL": "https://raw.githubusercontent.com/Neoncat-OG/TrollStore-IPAs/main/icons/com.burbn.instagram.png"
},
{
"name": "InstagramLRD",
"bundleIdentifier": "com.burbn.instagram",
"version": "311.0.2",
"versionDate": "2024-10-03",
"size": 142070418,
"downloadURL": "https://github.com/Neoncat-OG/TrollStore-IPAs/releases/download/InstagramLRD/InstagramLRD-311.0.2.ipa",
"developerName": "IPA Fire / nowesr1 / Manpreet Singh @thisismanpreets",
"localizedDescription": "Not cracked. If you've used TikTokLRD, imagine that but for Instagram. Features include media saving/sharing/previewing (stories included), show follow status, disable typing status, view DMs anonymously, disable ads, FaceID for account switching, etc.\nLast updated: 08-14-2024\nStatus: \u2705",
"iconURL": "https://raw.githubusercontent.com/Neoncat-OG/TrollStore-IPAs/main/icons/com.burbn.instagram.png"
},
{
"name": "InstagramLRD",
"bundleIdentifier": "com.burbn.instagram",
"version": "312.0.1.",
"versionDate": "2024-10-03",
"size": 142053164,
"downloadURL": "https://github.com/Neoncat-OG/TrollStore-IPAs/releases/download/InstagramLRD/InstagramLRD-312.0.1.tipa",
"developerName": "IPA Fire / nowesr1 / Manpreet Singh @thisismanpreets",
"localizedDescription": "Not cracked. If you've used TikTokLRD, imagine that but for Instagram. Features include media saving/sharing/previewing (stories included), show follow status, disable typing status, view DMs anonymously, disable ads, FaceID for account switching, etc.\nLast updated: 08-14-2024\nStatus: \u2705",
"iconURL": "https://raw.githubusercontent.com/Neoncat-OG/TrollStore-IPAs/main/icons/com.burbn.instagram.png"
},
{
"name": "InstagramLRD",
"bundleIdentifier": "com.burbn.instagram",
"version": "318.0.7",
"versionDate": "2024-10-03",
"size": 143596781,
"downloadURL": "https://github.com/Neoncat-OG/TrollStore-IPAs/releases/download/InstagramLRD/InstagramLRD-318.0.7.ipa",
"developerName": "IPA Fire / nowesr1 / Manpreet Singh @thisismanpreets",
"localizedDescription": "Not cracked. If you've used TikTokLRD, imagine that but for Instagram. Features include media saving/sharing/previewing (stories included), show follow status, disable typing status, view DMs anonymously, disable ads, FaceID for account switching, etc.\nLast updated: 08-14-2024\nStatus: \u2705",
"iconURL": "https://raw.githubusercontent.com/Neoncat-OG/TrollStore-IPAs/main/icons/com.burbn.instagram.png"
},
{
"name": "InstagramLRD",
"bundleIdentifier": "com.burbn.instagram",
"version": "321.0",
"versionDate": "2024-10-03",
"size": 143043778,
"downloadURL": "https://github.com/Neoncat-OG/TrollStore-IPAs/releases/download/InstagramLRD/InstagramLRD-321.0.ipa",
"developerName": "IPA Fire / nowesr1 / Manpreet Singh @thisismanpreets",
"localizedDescription": "Not cracked. If you've used TikTokLRD, imagine that but for Instagram. Features include media saving/sharing/previewing (stories included), show follow status, disable typing status, view DMs anonymously, disable ads, FaceID for account switching, etc.\nLast updated: 08-14-2024\nStatus: \u2705",
"iconURL": "https://raw.githubusercontent.com/Neoncat-OG/TrollStore-IPAs/main/icons/com.burbn.instagram.png"
},
{
"name": "InstagramLRD",
"bundleIdentifier": "com.burbn.instagram",
"version": "322.1.1",
"versionDate": "2024-10-03",
"size": 142988912,
"downloadURL": "https://github.com/Neoncat-OG/TrollStore-IPAs/releases/download/InstagramLRD/InstagramLRD-322.1.1.ipa",
"developerName": "IPA Fire / nowesr1 / Manpreet Singh @thisismanpreets",
"localizedDescription": "Not cracked. If you've used TikTokLRD, imagine that but for Instagram. Features include media saving/sharing/previewing (stories included), show follow status, disable typing status, view DMs anonymously, disable ads, FaceID for account switching, etc.\nLast updated: 08-14-2024\nStatus: \u2705",
"iconURL": "https://raw.githubusercontent.com/Neoncat-OG/TrollStore-IPAs/main/icons/com.burbn.instagram.png"
},
{
"name": "InstagramLRD",
"bundleIdentifier": "com.burbn.instagram",
"version": "324.0.4",
"versionDate": "2024-10-03",
"size": 143006930,
"downloadURL": "https://github.com/Neoncat-OG/TrollStore-IPAs/releases/download/InstagramLRD/InstagramLRD-324.0.4.ipa",
"developerName": "IPA Fire / nowesr1 / Manpreet Singh @thisismanpreets",
"localizedDescription": "Not cracked. If you've used TikTokLRD, imagine that but for Instagram. Features include media saving/sharing/previewing (stories included), show follow status, disable typing status, view DMs anonymously, disable ads, FaceID for account switching, etc.\nLast updated: 08-14-2024\nStatus: \u2705",
"iconURL": "https://raw.githubusercontent.com/Neoncat-OG/TrollStore-IPAs/main/icons/com.burbn.instagram.png"
},
{
"name": "InstagramLRD",
"bundleIdentifier": "com.burbn.instagram",
"version": "325.0.3",
"versionDate": "2024-10-03",
"size": 144783409,
"downloadURL": "https://github.com/Neoncat-OG/TrollStore-IPAs/releases/download/InstagramLRD/InstagramLRD-325.0.3.ipa",
"developerName": "IPA Fire / nowesr1 / Manpreet Singh @thisismanpreets",
"localizedDescription": "Not cracked. If you've used TikTokLRD, imagine that but for Instagram. Features include media saving/sharing/previewing (stories included), show follow status, disable typing status, view DMs anonymously, disable ads, FaceID for account switching, etc.\nLast updated: 08-14-2024\nStatus: \u2705",
"iconURL": "https://raw.githubusercontent.com/Neoncat-OG/TrollStore-IPAs/main/icons/com.burbn.instagram.png"
},
{
"name": "InstagramLRD",
"bundleIdentifier": "com.burbn.instagram",
"version": "333.0.4",
"versionDate": "2024-10-03",
"size": 156798149,
"downloadURL": "https://github.com/Neoncat-OG/TrollStore-IPAs/releases/download/InstagramLRD/InstagramLRD-333.0.4.ipa",
"developerName": "IPA Fire / nowesr1 / Manpreet Singh @thisismanpreets",
"localizedDescription": "Not cracked. If you've used TikTokLRD, imagine that but for Instagram. Features include media saving/sharing/previewing (stories included), show follow status, disable typing status, view DMs anonymously, disable ads, FaceID for account switching, etc.\nLast updated: 08-14-2024\nStatus: \u2705",
"iconURL": "https://raw.githubusercontent.com/Neoncat-OG/TrollStore-IPAs/main/icons/com.burbn.instagram.png"
},
{
"name": "InstagramLRD",
"bundleIdentifier": "com.burbn.instagram",
"version": "333.1.4",
"versionDate": "2024-10-03",
"size": 156783307,
"downloadURL": "https://github.com/Neoncat-OG/TrollStore-IPAs/releases/download/InstagramLRD/InstagramLRD-333.1.4.ipa",
"developerName": "IPA Fire / nowesr1 / Manpreet Singh @thisismanpreets",
"localizedDescription": "Not cracked. If you've used TikTokLRD, imagine that but for Instagram. Features include media saving/sharing/previewing (stories included), show follow status, disable typing status, view DMs anonymously, disable ads, FaceID for account switching, etc.\nLast updated: 08-14-2024\nStatus: \u2705",
"iconURL": "https://raw.githubusercontent.com/Neoncat-OG/TrollStore-IPAs/main/icons/com.burbn.instagram.png"
},
{
"name": "InstagramLRD",
"bundleIdentifier": "com.burbn.instagram",
"version": "335.0.8",
"versionDate": "2024-10-03",
"size": 154275863,
"downloadURL": "https://github.com/Neoncat-OG/TrollStore-IPAs/releases/download/InstagramLRD/InstagramLRD-335.0.8.ipa",
"developerName": "IPA Fire / nowesr1 / Manpreet Singh @thisismanpreets",
"localizedDescription": "Not cracked. If you've used TikTokLRD, imagine that but for Instagram. Features include media saving/sharing/previewing (stories included), show follow status, disable typing status, view DMs anonymously, disable ads, FaceID for account switching, etc.\nLast updated: 08-14-2024\nStatus: \u2705",
"iconURL": "https://raw.githubusercontent.com/Neoncat-OG/TrollStore-IPAs/main/icons/com.burbn.instagram.png"
},
{
"name": "InstagramLRD",
"bundleIdentifier": "com.burbn.instagram",
"version": "339.0.3",
"versionDate": "2024-10-03",
"size": 155992648,
"downloadURL": "https://github.com/Neoncat-OG/TrollStore-IPAs/releases/download/InstagramLRD/InstagramLRD-339.0.3.ipa",
"developerName": "IPA Fire / nowesr1 / Manpreet Singh @thisismanpreets",
"localizedDescription": "Not cracked. If you've used TikTokLRD, imagine that but for Instagram. Features include media saving/sharing/previewing (stories included), show follow status, disable typing status, view DMs anonymously, disable ads, FaceID for account switching, etc.\nLast updated: 08-14-2024\nStatus: \u2705",
"iconURL": "https://raw.githubusercontent.com/Neoncat-OG/TrollStore-IPAs/main/icons/com.burbn.instagram.png"
},
{
"name": "InstagramLRD",
"bundleIdentifier": "com.burbn.instagram",
"version": "347.2.5",
"versionDate": "2024-10-03",
"size": 159734532,
"downloadURL": "https://github.com/Neoncat-OG/TrollStore-IPAs/releases/download/InstagramLRD/InstagramLRD-347.2.5.ipa",
"developerName": "IPA Fire / nowesr1 / Manpreet Singh @thisismanpreets",
"localizedDescription": "Not cracked. If you've used TikTokLRD, imagine that but for Instagram. Features include media saving/sharing/previewing (stories included), show follow status, disable typing status, view DMs anonymously, disable ads, FaceID for account switching, etc.\nLast updated: 08-14-2024\nStatus: \u2705",
"iconURL": "https://raw.githubusercontent.com/Neoncat-OG/TrollStore-IPAs/main/icons/com.burbn.instagram.png"
},
{
"name": "InstagramElite",
"bundleIdentifier": "com.burbn.instagram",
"version": "266.0",
"versionDate": "2024-10-03",
"size": 117477390,
"downloadURL": "https://github.com/Neoncat-OG/TrollStore-IPAs/releases/download/InstagramElite/InstagramElite-266.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/Neoncat-OG/TrollStore-IPAs/main/icons/com.burbn.instagram.png"
},
{
"name": "InstagramElite",
"bundleIdentifier": "com.burbn.instagram",
"version": "273.0",
"versionDate": "2024-10-03",
"size": 119240475,
"downloadURL": "https://github.com/Neoncat-OG/TrollStore-IPAs/releases/download/InstagramElite/InstagramElite-273.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/Neoncat-OG/TrollStore-IPAs/main/icons/com.burbn.instagram.png"
},
{
"name": "InstagramElite",
"bundleIdentifier": "com.burbn.instagram",
"version": "279.0",
"versionDate": "2024-10-03",
"size": 123868270,
"downloadURL": "https://github.com/Neoncat-OG/TrollStore-IPAs/releases/download/InstagramElite/InstagramElite-279.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/Neoncat-OG/TrollStore-IPAs/main/icons/com.burbn.instagram.png"
},
{
"name": "InstagramElite",
"bundleIdentifier": "com.burbn.instagram",
"version": "285.0",
"versionDate": "2024-10-03",
"size": 117848712,
"downloadURL": "https://github.com/Neoncat-OG/TrollStore-IPAs/releases/download/InstagramElite/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/Neoncat-OG/TrollStore-IPAs/main/icons/com.burbn.instagram.png"
},
{
"name": "InstagramDark",
"bundleIdentifier": "com.burbn.instagram",
"version": "267.0",
"versionDate": "2024-10-03",
"size": 102463535,
"downloadURL": "https://github.com/Neoncat-OG/TrollStore-IPAs/releases/download/InstagramDark/InstagramDark-267.0.ipa",
"developerName": "CydiaAbdullah",
"localizedDescription": "Kinda like TikTokDark, but for Instagram. Features include media saving, profile picture saving, follow status, anonymous story viewing, etc. I mean, IG Rocket IPAs are very easy to find, but this one has a slightly better UI if you ask me\nLast updated: 04-23-2023\nStatus: \u274c",
"iconURL": "https://raw.githubusercontent.com/Neoncat-OG/TrollStore-IPAs/main/icons/com.burbn.instagram.png"
},
{
"name": "InstagramDark",
"bundleIdentifier": "com.burbn.instagram",
"version": "276.1",
"versionDate": "2024-10-03",
"size": 101600290,
"downloadURL": "https://github.com/Neoncat-OG/TrollStore-IPAs/releases/download/InstagramDark/InstagramDark-276.1.ipa",
"developerName": "CydiaAbdullah",
"localizedDescription": "Kinda like TikTokDark, but for Instagram. Features include media saving, profile picture saving, follow status, anonymous story viewing, etc. I mean, IG Rocket IPAs are very easy to find, but this one has a slightly better UI if you ask me\nLast updated: 04-23-2023\nStatus: \u274c",
"iconURL": "https://raw.githubusercontent.com/Neoncat-OG/TrollStore-IPAs/main/icons/com.burbn.instagram.png"
},
{
"name": "InstaRocketPlus",
"bundleIdentifier": "com.burbn.instagram",
"version": "261.0",
"versionDate": "2024-10-03",
"size": 122434268,
"downloadURL": "https://github.com/Neoncat-OG/TrollStore-IPAs/releases/download/InstaRocketPlus/InstaRocketPlus-261.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/Neoncat-OG/TrollStore-IPAs/main/icons/com.burbn.instagram.png"
},
{
"name": "InstaRocketPlus",
"bundleIdentifier": "com.burbn.instagram",
"version": "266.0",
"versionDate": "2024-10-03",
"size": 121430039,
"downloadURL": "https://github.com/Neoncat-OG/TrollStore-IPAs/releases/download/InstaRocketPlus/InstaRocketPlus-266.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/Neoncat-OG/TrollStore-IPAs/main/icons/com.burbn.instagram.png"
},
{
"name": "InstaRocketPlus",
"bundleIdentifier": "com.burbn.instagram",
"version": "287.0",
"versionDate": "2024-10-03",
"size": 134624715,
"downloadURL": "https://github.com/Neoncat-OG/TrollStore-IPAs/releases/download/InstaRocketPlus/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/Neoncat-OG/TrollStore-IPAs/main/icons/com.burbn.instagram.png"
},
{
"name": "InstaRocketPlus",
"bundleIdentifier": "com.burbn.instagram",
"version": "1.0",
"versionDate": "2024-10-03",
"size": 108772109,
"downloadURL": "https://github.com/Neoncat-OG/TrollStore-IPAs/releases/download/InstaRocketPlus/InstaRocketPlus.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/Neoncat-OG/TrollStore-IPAs/main/icons/com.burbn.instagram.png"
},
{
"name": "InstaRocketCracked",
"bundleIdentifier": "com.burbn.instagram",
"version": "267.0",
"versionDate": "2024-10-03",
"size": 114069371,
"downloadURL": "https://github.com/Neoncat-OG/TrollStore-IPAs/releases/download/InstaRocketCracked/InstaRocketCracked-267.0.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: 08-13-2024\nStatus: \u2705",
"iconURL": "https://raw.githubusercontent.com/Neoncat-OG/TrollStore-IPAs/main/icons/com.burbn.instagram.png"
},
{
"name": "InstaRocketCracked",
"bundleIdentifier": "com.burbn.instagram",
"version": "269.0",
"versionDate": "2024-10-03",
"size": 133250003,
"downloadURL": "https://github.com/Neoncat-OG/TrollStore-IPAs/releases/download/InstaRocketCracked/InstaRocketCracked-269.0.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: 08-13-2024\nStatus: \u2705",
"iconURL": "https://raw.githubusercontent.com/Neoncat-OG/TrollStore-IPAs/main/icons/com.burbn.instagram.png"
},
{
"name": "InstaRocketCracked",
"bundleIdentifier": "com.burbn.instagram",
"version": "270.0",
"versionDate": "2024-10-03",
"size": 133911214,
"downloadURL": "https://github.com/Neoncat-OG/TrollStore-IPAs/releases/download/InstaRocketCracked/InstaRocketCracked-270.0.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: 08-13-2024\nStatus: \u2705",
"iconURL": "https://raw.githubusercontent.com/Neoncat-OG/TrollStore-IPAs/main/icons/com.burbn.instagram.png"
},
{
"name": "InstaRocketCracked",
"bundleIdentifier": "com.burbn.instagram",
"version": "271.1",
"versionDate": "2024-10-03",
"size": 116107262,
"downloadURL": "https://github.com/Neoncat-OG/TrollStore-IPAs/releases/download/InstaRocketCracked/InstaRocketCracked-271.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: 08-13-2024\nStatus: \u2705",
"iconURL": "https://raw.githubusercontent.com/Neoncat-OG/TrollStore-IPAs/main/icons/com.burbn.instagram.png"
},
{
"name": "InstaRocketCracked",
"bundleIdentifier": "com.burbn.instagram",
"version": "273.0",
"versionDate": "2024-10-03",
"size": 112405921,
"downloadURL": "https://github.com/Neoncat-OG/TrollStore-IPAs/releases/download/InstaRocketCracked/InstaRocketCracked-273.0.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: 08-13-2024\nStatus: \u2705",
"iconURL": "https://raw.githubusercontent.com/Neoncat-OG/TrollStore-IPAs/main/icons/com.burbn.instagram.png"
},
{
"name": "InstaRocketCracked",
"bundleIdentifier": "com.burbn.instagram",
"version": "280.0",
"versionDate": "2024-10-03",
"size": 223030321,
"downloadURL": "https://github.com/Neoncat-OG/TrollStore-IPAs/releases/download/InstaRocketCracked/InstaRocketCracked-280.0.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: 08-13-2024\nStatus: \u2705",
"iconURL": "https://raw.githubusercontent.com/Neoncat-OG/TrollStore-IPAs/main/icons/com.burbn.instagram.png"
},
{
"name": "InstaRocketCracked",
"bundleIdentifier": "com.burbn.instagram",
"version": "282.0",
"versionDate": "2024-10-03",
"size": 129399520,
"downloadURL": "https://github.com/Neoncat-OG/TrollStore-IPAs/releases/download/InstaRocketCracked/InstaRocketCracked-282.0.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: 08-13-2024\nStatus: \u2705",
"iconURL": "https://raw.githubusercontent.com/Neoncat-OG/TrollStore-IPAs/main/icons/com.burbn.instagram.png"
},
{
"name": "InstaRocketCracked",
"bundleIdentifier": "com.burbn.instagram",
"version": "283.0",
"versionDate": "2024-10-03",
"size": 201450719,
"downloadURL": "https://github.com/Neoncat-OG/TrollStore-IPAs/releases/download/InstaRocketCracked/InstaRocketCracked-283.0.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: 08-13-2024\nStatus: \u2705",
"iconURL": "https://raw.githubusercontent.com/Neoncat-OG/TrollStore-IPAs/main/icons/com.burbn.instagram.png"
},
{
"name": "InstaRocketCracked",
"bundleIdentifier": "com.burbn.instagram",
"version": "289.1",
"versionDate": "2024-10-03",
"size": 143202331,
"downloadURL": "https://github.com/Neoncat-OG/TrollStore-IPAs/releases/download/InstaRocketCracked/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: 08-13-2024\nStatus: \u2705",
"iconURL": "https://raw.githubusercontent.com/Neoncat-OG/TrollStore-IPAs/main/icons/com.burbn.instagram.png"
},
{
"name": "InstaRocketCracked",
"bundleIdentifier": "com.burbn.instagram",
"version": "289",
"versionDate": "2024-10-03",
"size": 140912140,
"downloadURL": "https://github.com/Neoncat-OG/TrollStore-IPAs/releases/download/InstaRocketCracked/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: 08-13-2024\nStatus: \u2705",
"iconURL": "https://raw.githubusercontent.com/Neoncat-OG/TrollStore-IPAs/main/icons/com.burbn.instagram.png"
},
{
"name": "InstaRocketCracked",
"bundleIdentifier": "com.burbn.instagram",
"version": "294.0",
"versionDate": "2024-10-03",
"size": 138904016,
"downloadURL": "https://github.com/Neoncat-OG/TrollStore-IPAs/releases/download/InstaRocketCracked/InstaRocketCracked-294.0.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: 08-13-2024\nStatus: \u2705",
"iconURL": "https://raw.githubusercontent.com/Neoncat-OG/TrollStore-IPAs/main/icons/com.burbn.instagram.png"
},
{
"name": "InstaRocketCracked",
"bundleIdentifier": "com.burbn.instagram",
"version": "295.0",
"versionDate": "2024-10-03",
"size": 133673214,
"downloadURL": "https://github.com/Neoncat-OG/TrollStore-IPAs/releases/download/InstaRocketCracked/InstaRocketCracked-295.0.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: 08-13-2024\nStatus: \u2705",
"iconURL": "https://raw.githubusercontent.com/Neoncat-OG/TrollStore-IPAs/main/icons/com.burbn.instagram.png"
},
{
"name": "InstaRocketCracked",
"bundleIdentifier": "com.burbn.instagram",
"version": "297.0",
"versionDate": "2024-10-03",
"size": 134331276,
"downloadURL": "https://github.com/Neoncat-OG/TrollStore-IPAs/releases/download/InstaRocketCracked/InstaRocketCracked-297.0.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: 08-13-2024\nStatus: \u2705",
"iconURL": "https://raw.githubusercontent.com/Neoncat-OG/TrollStore-IPAs/main/icons/com.burbn.instagram.png"
},
{
"name": "InstaRocketCracked",
"bundleIdentifier": "com.burbn.instagram",
"version": "299.0",
"versionDate": "2024-10-03",
"size": 134594496,
"downloadURL": "https://github.com/Neoncat-OG/TrollStore-IPAs/releases/download/InstaRocketCracked/InstaRocketCracked-299.0.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: 08-13-2024\nStatus: \u2705",
"iconURL": "https://raw.githubusercontent.com/Neoncat-OG/TrollStore-IPAs/main/icons/com.burbn.instagram.png"
},
{
"name": "InstaRocketCracked",
"bundleIdentifier": "com.burbn.instagram",
"version": "300.0",
"versionDate": "2024-10-03",
"size": 141290845,
"downloadURL": "https://github.com/Neoncat-OG/TrollStore-IPAs/releases/download/InstaRocketCracked/InstaRocketCracked-300.0.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: 08-13-2024\nStatus: \u2705",
"iconURL": "https://raw.githubusercontent.com/Neoncat-OG/TrollStore-IPAs/main/icons/com.burbn.instagram.png"
},
{
"name": "InstaRocketCracked",
"bundleIdentifier": "com.burbn.instagram",
"version": "301.0",
"versionDate": "2024-10-03",
"size": 128823977,
"downloadURL": "https://github.com/Neoncat-OG/TrollStore-IPAs/releases/download/InstaRocketCracked/InstaRocketCracked-301.0.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: 08-13-2024\nStatus: \u2705",
"iconURL": "https://raw.githubusercontent.com/Neoncat-OG/TrollStore-IPAs/main/icons/com.burbn.instagram.png"
},
{
"name": "InstaRocketBH",
"bundleIdentifier": "com.burbn.instagram",
"version": "293.0",
"versionDate": "2024-10-03",
"size": 127051872,
"downloadURL": "https://github.com/Neoncat-OG/TrollStore-IPAs/releases/download/InstaRocketBH/InstaRocketBH-293.0.ipa",
"developerName": "zxcvbn's tweaked IPAs / BandarHL / SoCuul",
"localizedDescription": "Instagram, injected with Rocket Cracked (no ad banner, all features functional) and BH (new). List of BH's features . To activate Rocket, follow these steps. Note: This also includes a new tweak: \"IGReelHider\" made by zxcvbn.\nLast updated: 03-25-2024\nStatus: \u26a0\ufe0f",
"iconURL": "https://raw.githubusercontent.com/Neoncat-OG/TrollStore-IPAs/main/icons/com.burbn.instagram.png"
},
{
"name": "InstaRocketBH",
"bundleIdentifier": "com.burbn.instagram",
"version": "294.0",
"versionDate": "2024-10-03",
"size": 124694635,
"downloadURL": "https://github.com/Neoncat-OG/TrollStore-IPAs/releases/download/InstaRocketBH/InstaRocketBH-294.0.ipa",
"developerName": "zxcvbn's tweaked IPAs / BandarHL / SoCuul",
"localizedDescription": "Instagram, injected with Rocket Cracked (no ad banner, all features functional) and BH (new). List of BH's features . To activate Rocket, follow these steps. Note: This also includes a new tweak: \"IGReelHider\" made by zxcvbn.\nLast updated: 03-25-2024\nStatus: \u26a0\ufe0f",
"iconURL": "https://raw.githubusercontent.com/Neoncat-OG/TrollStore-IPAs/main/icons/com.burbn.instagram.png"
},
{
"name": "InstaRocketBH",
"bundleIdentifier": "com.burbn.instagram",
"version": "299.0",
"versionDate": "2024-10-03",
"size": 134983943,
"downloadURL": "https://github.com/Neoncat-OG/TrollStore-IPAs/releases/download/InstaRocketBH/InstaRocketBH-299.0.ipa",
"developerName": "zxcvbn's tweaked IPAs / BandarHL / SoCuul",
"localizedDescription": "Instagram, injected with Rocket Cracked (no ad banner, all features functional) and BH (new). List of BH's features . To activate Rocket, follow these steps. Note: This also includes a new tweak: \"IGReelHider\" made by zxcvbn.\nLast updated: 03-25-2024\nStatus: \u26a0\ufe0f",
"iconURL": "https://raw.githubusercontent.com/Neoncat-OG/TrollStore-IPAs/main/icons/com.burbn.instagram.png"
},
{
"name": "InstaRocketBH",
"bundleIdentifier": "com.burbn.instagram",
"version": "301.0",
"versionDate": "2024-10-03",
"size": 129198866,
"downloadURL": "https://github.com/Neoncat-OG/TrollStore-IPAs/releases/download/InstaRocketBH/InstaRocketBH-301.0.ipa",
"developerName": "zxcvbn's tweaked IPAs / BandarHL / SoCuul",
"localizedDescription": "Instagram, injected with Rocket Cracked (no ad banner, all features functional) and BH (new). List of BH's features . To activate Rocket, follow these steps. Note: This also includes a new tweak: \"IGReelHider\" made by zxcvbn.\nLast updated: 03-25-2024\nStatus: \u26a0\ufe0f",
"iconURL": "https://raw.githubusercontent.com/Neoncat-OG/TrollStore-IPAs/main/icons/com.burbn.instagram.png"
},
{
"name": "InkhunterPremium",
"bundleIdentifier": "InkHunter.inkHunter",
"version": "3.0.6",
"versionDate": "2024-10-03",
"size": 18114231,
"downloadURL": "https://github.com/Neoncat-OG/TrollStore-IPAs/releases/download/InkhunterPremium/InkhunterPremium-3.0.6.ipa",
"developerName": "Paisseon",
"localizedDescription": "An app that allows you to visualize any tattoo design on any part of your body with AR, giving you a preview of how it will look. A user requested it so here it is.\nLast updated: 07-14-2024\nStatus: \u2705",
"iconURL": "https://raw.githubusercontent.com/Neoncat-OG/TrollStore-IPAs/main/icons/InkHunter.inkHunter.png"
},
{
"name": "Downie",
"bundleIdentifier": "com.charliemonroe.Downie",
"version": "1.0-92",
"versionDate": "2024-10-03",
"size": 20571776,
"downloadURL": "https://github.com/Neoncat-OG/TrollStore-IPAs/releases/download/Downie/Downie-1.0-92.ipa",
"developerName": "TestFlight",
"localizedDescription": "A simple, powerful, and fast youtube video downloader now for iOS. Note: Beta version decrypted from TestFlight: Only compatible with iOS17 and later.\nLast updated: 05-02-2024\nStatus: \u274c",
"iconURL": "https://raw.githubusercontent.com/Neoncat-OG/TrollStore-IPAs/main/icons/com.charliemonroe.Downie.png"
},
{
"name": "Downie",
"bundleIdentifier": "com.charliemonroe.Downie",
"version": "1.0-95",
"versionDate": "2024-10-03",
"size": 22818818,
"downloadURL": "https://github.com/Neoncat-OG/TrollStore-IPAs/releases/download/Downie/Downie-1.0-95.ipa",
"developerName": "TestFlight",
"localizedDescription": "A simple, powerful, and fast youtube video downloader now for iOS. Note: Beta version decrypted from TestFlight: Only compatible with iOS17 and later.\nLast updated: 05-02-2024\nStatus: \u274c",
"iconURL": "https://raw.githubusercontent.com/Neoncat-OG/TrollStore-IPAs/main/icons/com.charliemonroe.Downie.png"
},
{
"name": "BHTikTokPlus",
"bundleIdentifier": "com.zhiliaoapp.musically",
"version": "30.6.0-1.2",
"versionDate": "2024-10-03",
"size": 228787999,
"downloadURL": "https://github.com/Neoncat-OG/TrollStore-IPAs/releases/download/BHTikTokPlus/BHTikTokPlus-30.6.0-1.2.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 : 08-08-2024 / BandarHL : 08-19-2023\nStatus: \u2705 \ud83d\udc4d \u2b50",
"iconURL": "https://raw.githubusercontent.com/Neoncat-OG/TrollStore-IPAs/main/icons/com.zhiliaoapp.musically.png"
},
{
"name": "ApolloPatcher",
"bundleIdentifier": "com.christianselig.Apollo",
"version": "1.15.11-0.0.6-1",
"versionDate": "2024-10-03",
"size": 110386487,
"downloadURL": "https://github.com/Neoncat-OG/TrollStore-IPAs/releases/download/ApolloPatcher/ApolloPatcher-1.15.11-0.0.6-1.ipa",
"developerName": "ichitaso",
"localizedDescription": "Apollo + ApolloPatcher (in-app configurable API keys). Note: I added this app upon request but I'm not familiar with its usage at all so if you come across any issues with the app, I won't be able to provide assistance.\nLast updated: 08-02-2024\nStatus: \u2705 \u2754",
"iconURL": "https://raw.githubusercontent.com/Neoncat-OG/TrollStore-IPAs/main/icons/com.christianselig.Apollo.png"
},
{
"name": "ApolloPatcher",
"bundleIdentifier": "com.christianselig.Apollo",
"version": "1.15.11-0.0.9",
"versionDate": "2024-10-03",
"size": 89235758,
"downloadURL": "https://github.com/Neoncat-OG/TrollStore-IPAs/releases/download/ApolloPatcher/ApolloPatcher-1.15.11-0.0.9.ipa",
"developerName": "ichitaso",
"localizedDescription": "Apollo + ApolloPatcher (in-app configurable API keys). Note: I added this app upon request but I'm not familiar with its usage at all so if you come across any issues with the app, I won't be able to provide assistance.\nLast updated: 08-02-2024\nStatus: \u2705 \u2754",
"iconURL": "https://raw.githubusercontent.com/Neoncat-OG/TrollStore-IPAs/main/icons/com.christianselig.Apollo.png"
},
{
"name": "Antoine",
"bundleIdentifier": "com.serena.Antoine",
"version": "1.3.tipa.ipa.",
"versionDate": "2024-10-03",
"size": 1623275,
"downloadURL": "https://github.com/Neoncat-OG/TrollStore-IPAs/releases/download/Antoine/Antoine-1.3.tipa.ipa.tipa",
"developerName": "SerenaKit",
"localizedDescription": "This app is TrollStore-only. An OSLog UI for iOS & iPadOS devices, Antoine allows you to view System Logs in real time, with the ability to filter logs by process, message, type, etc, as well additional stream options\nLast updated: 09-19-2023\nStatus: \u2705",
"iconURL": "https://raw.githubusercontent.com/Neoncat-OG/TrollStore-IPAs/main/icons/com.serena.Antoine.png"
},
{
"name": "AnimeNow",
"bundleIdentifier": "com.errorerrorerror.animenow",
"version": "1.0.0b1",
"versionDate": "2024-10-03",
"size": 6691352,
"downloadURL": "https://github.com/Neoncat-OG/TrollStore-IPAs/releases/download/AnimeNow/AnimeNow-1.0.0b1.ipa",
"developerName": "",
"localizedDescription": "",
"iconURL": "https://raw.githubusercontent.com/Neoncat-OG/TrollStore-IPAs/main/icons/com.errorerrorerror.animenow.png"
},
{
"name": "InfusePro",
"bundleIdentifier": "com.firecore.infuse",
"version": "7.4.10",
"versionDate": "2024-10-03",
"size": 44545614,
"downloadURL": "https://github.com/Neoncat-OG/TrollStore-IPAs/releases/download/InfusePro/InfusePro-7.4.10.ipa",
"developerName": "Suffuse-Team / InfusePlus",
"localizedDescription": "Injected with InfusePlus by dayanch96. Fancy media/video player, cracked for premium. Full app description here\nLast updated: 08-09-2024\nStatus: \u2705 \ud83d\udc4d",
"iconURL": "https://raw.githubusercontent.com/Neoncat-OG/TrollStore-IPAs/main/icons/com.firecore.infuse.png"
},
{
"name": "InfusePro",
"bundleIdentifier": "com.firecore.infuse",
"version": "7.5.7",
"versionDate": "2024-10-03",
"size": 44492277,
"downloadURL": "https://github.com/Neoncat-OG/TrollStore-IPAs/releases/download/InfusePro/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: 08-09-2024\nStatus: \u2705 \ud83d\udc4d",
"iconURL": "https://raw.githubusercontent.com/Neoncat-OG/TrollStore-IPAs/main/icons/com.firecore.infuse.png"
},
{
"name": "InfusePro",
"bundleIdentifier": "com.firecore.infuse",
"version": "7.5.9",
"versionDate": "2024-10-03",
"size": 36292217,
"downloadURL": "https://github.com/Neoncat-OG/TrollStore-IPAs/releases/download/InfusePro/InfusePro-7.5.9.ipa",
"developerName": "Suffuse-Team / InfusePlus",
"localizedDescription": "Injected with InfusePlus by dayanch96. Fancy media/video player, cracked for premium. Full app description here\nLast updated: 08-09-2024\nStatus: \u2705 \ud83d\udc4d",
"iconURL": "https://raw.githubusercontent.com/Neoncat-OG/TrollStore-IPAs/main/icons/com.firecore.infuse.png"
},
{
"name": "InfusePro",
"bundleIdentifier": "com.firecore.infuse",
"version": "7.6.1",
"versionDate": "2024-10-03",
"size": 43213714,
"downloadURL": "https://github.com/Neoncat-OG/TrollStore-IPAs/releases/download/InfusePro/InfusePro-7.6.1.ipa",
"developerName": "Suffuse-Team / InfusePlus",
"localizedDescription": "Injected with InfusePlus by dayanch96. Fancy media/video player, cracked for premium. Full app description here\nLast updated: 08-09-2024\nStatus: \u2705 \ud83d\udc4d",
"iconURL": "https://raw.githubusercontent.com/Neoncat-OG/TrollStore-IPAs/main/icons/com.firecore.infuse.png"
},
{
"name": "InfusePro",
"bundleIdentifier": "com.firecore.infuse",
"version": "7.6.3",
"versionDate": "2024-10-03",
"size": 45198980,
"downloadURL": "https://github.com/Neoncat-OG/TrollStore-IPAs/releases/download/InfusePro/InfusePro-7.6.3.ipa",
"developerName": "Suffuse-Team / InfusePlus",
"localizedDescription": "Injected with InfusePlus by dayanch96. Fancy media/video player, cracked for premium. Full app description here\nLast updated: 08-09-2024\nStatus: \u2705 \ud83d\udc4d",
"iconURL": "https://raw.githubusercontent.com/Neoncat-OG/TrollStore-IPAs/main/icons/com.firecore.infuse.png"
},
{
"name": "InfusePro",
"bundleIdentifier": "com.firecore.infuse",
"version": "7.6.6",
"versionDate": "2024-10-03",
"size": 78682777,
"downloadURL": "https://github.com/Neoncat-OG/TrollStore-IPAs/releases/download/InfusePro/InfusePro-7.6.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: 08-09-2024\nStatus: \u2705 \ud83d\udc4d",
"iconURL": "https://raw.githubusercontent.com/Neoncat-OG/TrollStore-IPAs/main/icons/com.firecore.infuse.png"
},
{
"name": "InfusePro",
"bundleIdentifier": "com.firecore.infuse",
"version": "7.6.7",
"versionDate": "2024-10-03",
"size": 40197875,
"downloadURL": "https://github.com/Neoncat-OG/TrollStore-IPAs/releases/download/InfusePro/InfusePro-7.6.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: 08-09-2024\nStatus: \u2705 \ud83d\udc4d",
"iconURL": "https://raw.githubusercontent.com/Neoncat-OG/TrollStore-IPAs/main/icons/com.firecore.infuse.png"
},
{
"name": "Infuse",
"bundleIdentifier": "com.firecore.infuse",
"version": "7.6.5",
"versionDate": "2024-10-03",
"size": 38834254,
"downloadURL": "https://github.com/Neoncat-OG/TrollStore-IPAs/releases/download/Infuse/Infuse-7.6.5.ipa",
"developerName": "",
"localizedDescription": "",
"iconURL": "https://raw.githubusercontent.com/Neoncat-OG/TrollStore-IPAs/main/icons/com.firecore.infuse.png"
},
{
"name": "InShotPro",
"bundleIdentifier": "com.camerasideas.InstaShot",
"version": "1.63.3",
"versionDate": "2024-10-02",
"size": 77797740,
"downloadURL": "https://github.com/Neoncat-OG/TrollStore-IPAs/releases/download/InShotPro/InShotPro-1.63.3.ipa",
"developerName": "AppDB / DPixel / iApps / FayezUpdates / Manpreet Singh @thisismanpreets / zxcvbn\u2019s tweaked IPAs",
"localizedDescription": "Popular video/image editor with pro features unlocked.\nLast updated: 08-06-2024\nStatus: \u2705",
"iconURL": "https://raw.githubusercontent.com/Neoncat-OG/TrollStore-IPAs/main/icons/com.camerasideas.InstaShot.png"
},
{
"name": "InShotPro",
"bundleIdentifier": "com.camerasideas.InstaShot",
"version": "1.64.0",
"versionDate": "2024-10-02",
"size": 97808807,
"downloadURL": "https://github.com/Neoncat-OG/TrollStore-IPAs/releases/download/InShotPro/InShotPro-1.64.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: 08-06-2024\nStatus: \u2705",
"iconURL": "https://raw.githubusercontent.com/Neoncat-OG/TrollStore-IPAs/main/icons/com.camerasideas.InstaShot.png"
},
{
"name": "InShotPro",
"bundleIdentifier": "com.camerasideas.InstaShot",
"version": "1.65.0",
"versionDate": "2024-10-02",
"size": 83148773,
"downloadURL": "https://github.com/Neoncat-OG/TrollStore-IPAs/releases/download/InShotPro/InShotPro-1.65.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: 08-06-2024\nStatus: \u2705",
"iconURL": "https://raw.githubusercontent.com/Neoncat-OG/TrollStore-IPAs/main/icons/com.camerasideas.InstaShot.png"
},
{
"name": "InShotPro",
"bundleIdentifier": "com.camerasideas.InstaShot",
"version": "1.66.0",
"versionDate": "2024-10-02",
"size": 89073088,
"downloadURL": "https://github.com/Neoncat-OG/TrollStore-IPAs/releases/download/InShotPro/InShotPro-1.66.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: 08-06-2024\nStatus: \u2705",
"iconURL": "https://raw.githubusercontent.com/Neoncat-OG/TrollStore-IPAs/main/icons/com.camerasideas.InstaShot.png"
},
{
"name": "InShotPro",
"bundleIdentifier": "com.camerasideas.InstaShot",
"version": "1.66.1",
"versionDate": "2024-10-02",
"size": 87709132,
"downloadURL": "https://github.com/Neoncat-OG/TrollStore-IPAs/releases/download/InShotPro/InShotPro-1.66.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: 08-06-2024\nStatus: \u2705",
"iconURL": "https://raw.githubusercontent.com/Neoncat-OG/TrollStore-IPAs/main/icons/com.camerasideas.InstaShot.png"
},
{
"name": "InShotPro",
"bundleIdentifier": "com.camerasideas.InstaShot",
"version": "1.67.0",
"versionDate": "2024-10-02",
"size": 101978286,
"downloadURL": "https://github.com/Neoncat-OG/TrollStore-IPAs/releases/download/InShotPro/InShotPro-1.67.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: 08-06-2024\nStatus: \u2705",
"iconURL": "https://raw.githubusercontent.com/Neoncat-OG/TrollStore-IPAs/main/icons/com.camerasideas.InstaShot.png"
},
{
"name": "InShotPro",
"bundleIdentifier": "com.camerasideas.InstaShot",
"version": "1.67.1",
"versionDate": "2024-10-03",
"size": 104275639,
"downloadURL": "https://github.com/Neoncat-OG/TrollStore-IPAs/releases/download/InShotPro/InShotPro-1.67.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: 08-06-2024\nStatus: \u2705",
"iconURL": "https://raw.githubusercontent.com/Neoncat-OG/TrollStore-IPAs/main/icons/com.camerasideas.InstaShot.png"
},
{
"name": "InShotPro",
"bundleIdentifier": "com.camerasideas.InstaShot",
"version": "1.69.1",
"versionDate": "2024-10-02",
"size": 85111276,
"downloadURL": "https://github.com/Neoncat-OG/TrollStore-IPAs/releases/download/InShotPro/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: 08-06-2024\nStatus: \u2705",
"iconURL": "https://raw.githubusercontent.com/Neoncat-OG/TrollStore-IPAs/main/icons/com.camerasideas.InstaShot.png"
},
{
"name": "InShotPro",
"bundleIdentifier": "com.camerasideas.InstaShot",
"version": "1.70.0",
"versionDate": "2024-10-02",
"size": 104584718,
"downloadURL": "https://github.com/Neoncat-OG/TrollStore-IPAs/releases/download/InShotPro/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: 08-06-2024\nStatus: \u2705",
"iconURL": "https://raw.githubusercontent.com/Neoncat-OG/TrollStore-IPAs/main/icons/com.camerasideas.InstaShot.png"
},
{
"name": "InShotPro",
"bundleIdentifier": "com.camerasideas.InstaShot",
"version": "1.70.3",
"versionDate": "2024-10-02",
"size": 94184469,
"downloadURL": "https://github.com/Neoncat-OG/TrollStore-IPAs/releases/download/InShotPro/InShotPro-1.70.3.ipa",
"developerName": "AppDB / DPixel / iApps / FayezUpdates / Manpreet Singh @thisismanpreets / zxcvbn\u2019s tweaked IPAs",
"localizedDescription": "Popular video/image editor with pro features unlocked.\nLast updated: 08-06-2024\nStatus: \u2705",
"iconURL": "https://raw.githubusercontent.com/Neoncat-OG/TrollStore-IPAs/main/icons/com.camerasideas.InstaShot.png"
},
{
"name": "InShotPro",
"bundleIdentifier": "com.camerasideas.InstaShot",
"version": "1.71.0",
"versionDate": "2024-10-02",
"size": 109555080,
"downloadURL": "https://github.com/Neoncat-OG/TrollStore-IPAs/releases/download/InShotPro/InShotPro-1.71.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: 08-06-2024\nStatus: \u2705",
"iconURL": "https://raw.githubusercontent.com/Neoncat-OG/TrollStore-IPAs/main/icons/com.camerasideas.InstaShot.png"
},
{
"name": "InShotPro",
"bundleIdentifier": "com.camerasideas.InstaShot",
"version": "1.72.0",
"versionDate": "2024-10-03",
"size": 128843318,
"downloadURL": "https://github.com/Neoncat-OG/TrollStore-IPAs/releases/download/InShotPro/InShotPro-1.72.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: 08-06-2024\nStatus: \u2705",
"iconURL": "https://raw.githubusercontent.com/Neoncat-OG/TrollStore-IPAs/main/icons/com.camerasideas.InstaShot.png"
},
{
"name": "InShotPro",
"bundleIdentifier": "com.camerasideas.InstaShot",
"version": "1.76.1",
"versionDate": "2024-10-03",
"size": 148817538,
"downloadURL": "https://github.com/Neoncat-OG/TrollStore-IPAs/releases/download/InShotPro/InShotPro-1.76.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: 08-06-2024\nStatus: \u2705",
"iconURL": "https://raw.githubusercontent.com/Neoncat-OG/TrollStore-IPAs/main/icons/com.camerasideas.InstaShot.png"
},
{
"name": "InShotPro",
"bundleIdentifier": "com.camerasideas.InstaShot",
"version": "1.76.3",
"versionDate": "2024-10-03",
"size": 142988975,
"downloadURL": "https://github.com/Neoncat-OG/TrollStore-IPAs/releases/download/InShotPro/InShotPro-1.76.3.ipa",
"developerName": "AppDB / DPixel / iApps / FayezUpdates / Manpreet Singh @thisismanpreets / zxcvbn\u2019s tweaked IPAs",
"localizedDescription": "Popular video/image editor with pro features unlocked.\nLast updated: 08-06-2024\nStatus: \u2705",
"iconURL": "https://raw.githubusercontent.com/Neoncat-OG/TrollStore-IPAs/main/icons/com.camerasideas.InstaShot.png"
},
{
"name": "InShotPro",
"bundleIdentifier": "com.camerasideas.InstaShot",
"version": "1.77.1",
"versionDate": "2024-10-03",
"size": 149778320,
"downloadURL": "https://github.com/Neoncat-OG/TrollStore-IPAs/releases/download/InShotPro/InShotPro-1.77.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: 08-06-2024\nStatus: \u2705",
"iconURL": "https://raw.githubusercontent.com/Neoncat-OG/TrollStore-IPAs/main/icons/com.camerasideas.InstaShot.png"
},
{
"name": "InShotPro",
"bundleIdentifier": "com.camerasideas.InstaShot",
"version": "1.78.1",
"versionDate": "2024-10-03",
"size": 153174268,
"downloadURL": "https://github.com/Neoncat-OG/TrollStore-IPAs/releases/download/InShotPro/InShotPro-1.78.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: 08-06-2024\nStatus: \u2705",
"iconURL": "https://raw.githubusercontent.com/Neoncat-OG/TrollStore-IPAs/main/icons/com.camerasideas.InstaShot.png"
},
{
"name": "InShotPro",
"bundleIdentifier": "com.camerasideas.InstaShot",
"version": "1.79.0",
"versionDate": "2024-10-03",
"size": 161103425,
"downloadURL": "https://github.com/Neoncat-OG/TrollStore-IPAs/releases/download/InShotPro/InShotPro-1.79.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: 08-06-2024\nStatus: \u2705",
"iconURL": "https://raw.githubusercontent.com/Neoncat-OG/TrollStore-IPAs/main/icons/com.camerasideas.InstaShot.png"
},
{
"name": "InShotPro",
"bundleIdentifier": "com.camerasideas.InstaShot",
"version": "1.79.1",
"versionDate": "2024-10-03",
"size": 164993226,
"downloadURL": "https://github.com/Neoncat-OG/TrollStore-IPAs/releases/download/InShotPro/InShotPro-1.79.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: 08-06-2024\nStatus: \u2705",
"iconURL": "https://raw.githubusercontent.com/Neoncat-OG/TrollStore-IPAs/main/icons/com.camerasideas.InstaShot.png"
},
{
"name": "InShotPro",
"bundleIdentifier": "com.camerasideas.InstaShot",
"version": "1.80.1",
"versionDate": "2024-10-03",
"size": 167160486,
"downloadURL": "https://github.com/Neoncat-OG/TrollStore-IPAs/releases/download/InShotPro/InShotPro-1.80.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: 08-06-2024\nStatus: \u2705",
"iconURL": "https://raw.githubusercontent.com/Neoncat-OG/TrollStore-IPAs/main/icons/com.camerasideas.InstaShot.png"
},
{
"name": "InShotPro",
"bundleIdentifier": "com.camerasideas.InstaShot",
"version": "1.0",
"versionDate": "2024-10-03",
"size": 77681163,
"downloadURL": "https://github.com/Neoncat-OG/TrollStore-IPAs/releases/download/InShotPro/InShotPro.ipa",
"developerName": "AppDB / DPixel / iApps / FayezUpdates / Manpreet Singh @thisismanpreets / zxcvbn\u2019s tweaked IPAs",
"localizedDescription": "Popular video/image editor with pro features unlocked.\nLast updated: 08-06-2024\nStatus: \u2705",
"iconURL": "https://raw.githubusercontent.com/Neoncat-OG/TrollStore-IPAs/main/icons/com.camerasideas.InstaShot.png"
},
{
"name": "ImpulsePro",
"bundleIdentifier": "gen.tech.impulse",
"version": "1.30.10",
"versionDate": "2024-10-01",
"size": 81659589,
"downloadURL": "https://github.com/Neoncat-OG/TrollStore-IPAs/releases/download/ImpulsePro/ImpulsePro-1.30.10.ipa",
"developerName": "DPixel",
"localizedDescription": "Impulse, cracked with pro features (buy and cancel). Note: Install through TrollStore then reinstall via the AppStore. This process (might) keep the tweak working.\nLast updated: 08-12-2024\nStatus: \u2705",
"iconURL": "https://raw.githubusercontent.com/Neoncat-OG/TrollStore-IPAs/main/icons/gen.tech.impulse.png"
},
{
"name": "ImpulsePro",
"bundleIdentifier": "gen.tech.impulse",
"version": "1.30.12",
"versionDate": "2024-10-02",
"size": 75415910,
"downloadURL": "https://github.com/Neoncat-OG/TrollStore-IPAs/releases/download/ImpulsePro/ImpulsePro-1.30.12.ipa",
"developerName": "DPixel",
"localizedDescription": "Impulse, cracked with pro features (buy and cancel). Note: Install through TrollStore then reinstall via the AppStore. This process (might) keep the tweak working.\nLast updated: 08-12-2024\nStatus: \u2705",
"iconURL": "https://raw.githubusercontent.com/Neoncat-OG/TrollStore-IPAs/main/icons/gen.tech.impulse.png"
},
{
"name": "ImpulsePro",
"bundleIdentifier": "gen.tech.impulse",
"version": "1.30.15",
"versionDate": "2024-10-02",
"size": 80589578,
"downloadURL": "https://github.com/Neoncat-OG/TrollStore-IPAs/releases/download/ImpulsePro/ImpulsePro-1.30.15.ipa",
"developerName": "DPixel",
"localizedDescription": "Impulse, cracked with pro features (buy and cancel). Note: Install through TrollStore then reinstall via the AppStore. This process (might) keep the tweak working.\nLast updated: 08-12-2024\nStatus: \u2705",
"iconURL": "https://raw.githubusercontent.com/Neoncat-OG/TrollStore-IPAs/main/icons/gen.tech.impulse.png"
},
{
"name": "ImpulsePro",
"bundleIdentifier": "gen.tech.impulse",
"version": "1.30.18",
"versionDate": "2024-10-02",
"size": 84149183,
"downloadURL": "https://github.com/Neoncat-OG/TrollStore-IPAs/releases/download/ImpulsePro/ImpulsePro-1.30.18.ipa",
"developerName": "DPixel",
"localizedDescription": "Impulse, cracked with pro features (buy and cancel). Note: Install through TrollStore then reinstall via the AppStore. This process (might) keep the tweak working.\nLast updated: 08-12-2024\nStatus: \u2705",
"iconURL": "https://raw.githubusercontent.com/Neoncat-OG/TrollStore-IPAs/main/icons/gen.tech.impulse.png"
},
{
"name": "ImpulsePro",
"bundleIdentifier": "gen.tech.impulse",
"version": "1.30.21",
"versionDate": "2024-10-02",
"size": 83243101,
"downloadURL": "https://github.com/Neoncat-OG/TrollStore-IPAs/releases/download/ImpulsePro/ImpulsePro-1.30.21.ipa",
"developerName": "DPixel",
"localizedDescription": "Impulse, cracked with pro features (buy and cancel). Note: Install through TrollStore then reinstall via the AppStore. This process (might) keep the tweak working.\nLast updated: 08-12-2024\nStatus: \u2705",
"iconURL": "https://raw.githubusercontent.com/Neoncat-OG/TrollStore-IPAs/main/icons/gen.tech.impulse.png"
},
{
"name": "ImpulsePro",
"bundleIdentifier": "gen.tech.impulse",
"version": "1.30.24",
"versionDate": "2024-10-02",