This repository was archived by the owner on Jul 30, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtrollapps.json
More file actions
1648 lines (1648 loc) · 73.3 KB
/
trollapps.json
File metadata and controls
1648 lines (1648 loc) · 73.3 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": "DRKSRC",
"subtitle": "Your Fav Source...",
"description": "DRKSRC: A curated collection of the community's most essential and popular iOS apps and utilities",
"iconURL": "https://raw.githubusercontent.com/DRKCTRLDEV/DRKSRC/main/static/assets/DRKSRC (Icon).png",
"headerURL": "https://raw.githubusercontent.com/DRKCTRLDEV/DRKSRC/main/static/assets/DRKSRC (Header_2).png",
"website": "https://github.com/DRKCTRLDEV/DRKSRC",
"tintColor": "#9966CC",
"featuredApps": [
"com.serena.AppIndex",
"com.mologie.NXBoot",
"live.cclerc.geranium",
"com.roothide.Bootstrap",
"com.lunginspector.nuggetrevamped"
],
"apps": [
{
"name": "AirTroller",
"bundleIdentifier": "net.sourceloc.AirTroller",
"developerName": "SourceLocation",
"subtitle": "spam AirDrop requests on iOS devices",
"localizedDescription": "AirTroller is an app that allows users to send multiple AirDrop requests for fun. Compatible with both jailbroken devices and those using TrollStore on iOS 14 and above.",
"iconURL": "https://raw.githubusercontent.com/DRKCTRLDEV/DRKSRC/main/static/assets/DRKSRC (No-Icon).png",
"versions": [
{
"version": "1.1.1",
"date": "2022-11-26",
"downloadURL": "https://github.com/sourcelocation/AirTroller/releases/download/1.1.1/AirTroller-1.1.1.tipa",
"size": 782388
},
{
"version": "1.1",
"date": "2022-11-26",
"downloadURL": "https://github.com/sourcelocation/AirTroller/releases/download/1.1/AirTroller-1.1.tipa",
"size": 782092
},
{
"version": "1.0",
"date": "2022-11-25",
"downloadURL": "https://github.com/sourcelocation/AirTroller/releases/download/1.0/AirTroller-1.0.tipa",
"size": 812269
}
],
"screenshotURLs": [
"https://raw.githubusercontent.com/DRKCTRLDEV/DRKSRC/main/Apps/AirTroller/screenshots/IMG_1.png"
],
"appPermissions": {}
},
{
"name": "AppCommander",
"bundleIdentifier": "ca.bomberfish.AppCommander",
"developerName": "BomberFish, f1shy-dev",
"subtitle": "Swiss Army Knife for iPhone Apps (iOS 14.0-17.0)",
"localizedDescription": "AppCommander is a powerful iOS utility for app management and system customization. Features include App Manager, Home Screen sorting, and system tweaks. Supports iOS 14.0-17.0.",
"iconURL": "https://raw.githubusercontent.com/DRKCTRLDEV/DRKSRC/main/static/assets/DRKSRC (No-Icon).png",
"versions": [
{
"version": "2.0.0",
"date": "2023-12-25",
"downloadURL": "https://github.com/BomberFish/AppCommander/releases/download/v2.0.0-p1/AppCommander.tipa",
"size": 2756390
},
{
"version": "1.0.0",
"date": "2023-07-12",
"downloadURL": "https://github.com/BomberFish/AppCommander-legacy/releases/download/v1.0.0/AppCommander_v1.0.0.ipa",
"size": 16030736
},
{
"version": "1.0.1",
"date": "2023-07-01",
"downloadURL": "https://github.com/BomberFish/AppCommander-legacy/releases/download/v1.0.0_publicbeta1/AppCommander-v1.0.0_publicbeta1.ipa",
"size": 15941020
},
{
"version": "0.1.3",
"date": "2023-04-13",
"downloadURL": "https://github.com/BomberFish/AppCommander-legacy/releases/download/v0.1-beta.3/AppCommander.0.1.Beta.3.ipa",
"size": 5435252
}
],
"screenshotURLs": [
"https://raw.githubusercontent.com/DRKCTRLDEV/DRKSRC/main/Apps/AppCommander/screenshots/IMG_1.png",
"https://raw.githubusercontent.com/DRKCTRLDEV/DRKSRC/main/Apps/AppCommander/screenshots/IMG_2.png",
"https://raw.githubusercontent.com/DRKCTRLDEV/DRKSRC/main/Apps/AppCommander/screenshots/IMG_3.png",
"https://raw.githubusercontent.com/DRKCTRLDEV/DRKSRC/main/Apps/AppCommander/screenshots/IMG_4.png"
],
"appPermissions": {}
},
{
"name": "AppIndex",
"bundleIdentifier": "com.serena.AppIndex",
"developerName": "NSAntoine, justtryingthingsout",
"subtitle": "Modern Applications Manager for iOS",
"localizedDescription": "AppIndex is a new, modern App Explorer/Manager app for iOS. It allows users to view, sort, search, and manage applications on their device. Features include viewing extensive app info, backing up and restoring apps, exporting as .ipa files, and more. AppIndex provides detailed information about each app, including bundle identifier, type, download date, version, SDK version, iTunes metadata, size, status, entitlements, URL schemes, and more.",
"iconURL": "https://raw.githubusercontent.com/DRKCTRLDEV/DRKSRC/main/static/assets/DRKSRC (No-Icon).png",
"versions": [
{
"version": "1.0",
"date": "2023-04-04",
"downloadURL": "https://github.com/NSAntoine/AppIndex/releases/download/1.0/AppIndexTrollStore.tipa",
"size": 871661
}
],
"screenshotURLs": [
"https://raw.githubusercontent.com/DRKCTRLDEV/DRKSRC/main/Apps/AppIndex/screenshots/IMG_1.png",
"https://raw.githubusercontent.com/DRKCTRLDEV/DRKSRC/main/Apps/AppIndex/screenshots/IMG_2.png",
"https://raw.githubusercontent.com/DRKCTRLDEV/DRKSRC/main/Apps/AppIndex/screenshots/IMG_3.png",
"https://raw.githubusercontent.com/DRKCTRLDEV/DRKSRC/main/Apps/AppIndex/screenshots/IMG_4.png"
],
"appPermissions": {}
},
{
"name": "BatteryInfo",
"bundleIdentifier": "com.developlab.BatteryInfo",
"developerName": "DevelopCubeLab",
"subtitle": "Battery Monitoring Utility",
"localizedDescription": "BatteryInfo is an iOS TrollStore application designed to monitor and record detailed battery information. It provides users with insights into battery health, usage, and performance metrics, leveraging native iOS capabilities for accurate data collection.",
"iconURL": "https://raw.githubusercontent.com/DRKCTRLDEV/DRKSRC/main/static/assets/DRKSRC (No-Icon).png",
"versions": [
{
"version": "1.2.2",
"date": "2025-07-09",
"downloadURL": "https://github.com/DevelopCubeLab/BatteryInfo/releases/download/1.2.2/com.developlab.batteryinfo_1.2.2.tipa",
"size": 346882
},
{
"version": "1.2.1",
"date": "2025-06-04",
"downloadURL": "https://github.com/DevelopCubeLab/BatteryInfo/releases/download/1.2.1/com.developlab.batteryinfo_1.2.1.tipa",
"size": 327340
},
{
"version": "1.2.0",
"date": "2025-05-16",
"downloadURL": "https://github.com/DevelopCubeLab/BatteryInfo/releases/download/1.2.0/com.developlab.batteryinfo_1.2.0.tipa",
"size": 308533
},
{
"version": "1.1.9",
"date": "2025-05-16",
"downloadURL": "https://github.com/DevelopCubeLab/BatteryInfo/releases/download/1.1.9/com.developlab.batteryinfo_1.1.9.tipa",
"size": 219436
},
{
"version": "1.1.8",
"date": "2025-03-03",
"downloadURL": "https://github.com/DevelopCubeLab/BatteryInfo/releases/download/1.1.8/BatteryInfo_1.1.8.tipa",
"size": 160066
},
{
"version": "1.1.7",
"date": "2025-03-02",
"downloadURL": "https://github.com/DevelopCubeLab/BatteryInfo/releases/download/1.1.7/BatteryInfo_1.1.7.tipa",
"size": 159281
},
{
"version": "1.1.6",
"date": "2025-02-23",
"downloadURL": "https://github.com/DevelopCubeLab/BatteryInfo/releases/download/1.1.6/BatteryInfo_1.1.6.tipa",
"size": 159267
},
{
"version": "1.1.5",
"date": "2025-02-22",
"downloadURL": "https://github.com/DevelopCubeLab/BatteryInfo/releases/download/1.1.5/BatteryInfo_1.1.5.tipa",
"size": 156903
},
{
"version": "1.1.4",
"date": "2025-02-22",
"downloadURL": "https://github.com/DevelopCubeLab/BatteryInfo/releases/download/1.1.4/BatteryInfo_1.1.4.tipa",
"size": 157019
},
{
"version": "1.1.3",
"date": "2025-02-22",
"downloadURL": "https://github.com/DevelopCubeLab/BatteryInfo/releases/download/1.1.3/BatteryInfo_1.1.3.tipa",
"size": 157076
}
],
"screenshotURLs": [
"https://raw.githubusercontent.com/DRKCTRLDEV/DRKSRC/main/Apps/BatteryInfo/screenshots/IMG_1.png",
"https://raw.githubusercontent.com/DRKCTRLDEV/DRKSRC/main/Apps/BatteryInfo/screenshots/IMG_2.png",
"https://raw.githubusercontent.com/DRKCTRLDEV/DRKSRC/main/Apps/BatteryInfo/screenshots/IMG_3.png",
"https://raw.githubusercontent.com/DRKCTRLDEV/DRKSRC/main/Apps/BatteryInfo/screenshots/IMG_4.png"
],
"appPermissions": {}
},
{
"name": "Bootstrap",
"bundleIdentifier": "com.roothide.Bootstrap",
"developerName": "roothide",
"subtitle": "Jailbreak Bootstrap Tool",
"localizedDescription": "Bootstrap is a powerful tool for jailbreaking iOS devices, providing essential functionality for tweaks and system modifications.",
"iconURL": "https://raw.githubusercontent.com/DRKCTRLDEV/DRKSRC/main/static/assets/DRKSRC (No-Icon).png",
"versions": [
{
"version": "1.4",
"date": "2025-04-09",
"downloadURL": "https://github.com/roothide/Bootstrap/releases/download/1.4/Bootstrap.tipa",
"size": 55352551
},
{
"version": "1.3.2",
"date": "2025-01-09",
"downloadURL": "https://github.com/roothide/Bootstrap/releases/download/1.3.2/Bootstrap.tipa",
"size": 54595581
},
{
"version": "1.3",
"date": "2024-11-18",
"downloadURL": "https://github.com/roothide/Bootstrap/releases/download/1.3/Bootstrap.tipa",
"size": 54202306
},
{
"version": "1.2.9",
"date": "2024-11-11",
"downloadURL": "https://github.com/roothide/Bootstrap/releases/download/1.2.9/Bootstrap.tipa",
"size": 54202235
},
{
"version": "1.2.8",
"date": "2024-10-05",
"downloadURL": "https://github.com/roothide/Bootstrap/releases/download/1.2.8/Bootstrap.tipa",
"size": 54508536
},
{
"version": "1.2.6",
"date": "2024-09-11",
"downloadURL": "https://github.com/roothide/Bootstrap/releases/download/1.2.6/Bootstrap.tipa",
"size": 54497160
},
{
"version": "1.2.1",
"date": "2024-02-05",
"downloadURL": "https://github.com/roothide/Bootstrap/releases/download/1.2.1/Bootstrap.tipa",
"size": 54521377
},
{
"version": "1.1.1",
"date": "2024-01-31",
"downloadURL": "https://github.com/roothide/Bootstrap/releases/download/1.1.1/Bootstrap.tipa",
"size": 54499627
},
{
"version": "1.1",
"date": "2024-01-22",
"downloadURL": "https://github.com/roothide/Bootstrap/releases/download/1.1/Bootstrap.tipa",
"size": 54500569
},
{
"version": "1.0",
"date": "2024-01-17",
"downloadURL": "https://github.com/roothide/Bootstrap/releases/download/1.0/Bootstrap.tipa",
"size": 54494881
}
],
"screenshotURLs": [
"https://raw.githubusercontent.com/DRKCTRLDEV/DRKSRC/main/Apps/Bootstrap/screenshots/IMG_1.png",
"https://raw.githubusercontent.com/DRKCTRLDEV/DRKSRC/main/Apps/Bootstrap/screenshots/IMG_2.png",
"https://raw.githubusercontent.com/DRKCTRLDEV/DRKSRC/main/Apps/Bootstrap/screenshots/IMG_3.png"
],
"appPermissions": {}
},
{
"name": "CAPerfHUD",
"bundleIdentifier": "com.kdt.CAPerfHUD",
"developerName": "khanhduytran0",
"subtitle": "System-wide performance HUD for iOS 14+",
"localizedDescription": "CAPerfHUD enables a system-wide performance HUD for iOS 14 and above. It requires TrollStore to function. The app allows users to monitor various system performance metrics in real-time. Note that some measurements like frequencies and power consumption may not work, and changes last until backboard restarts (respring).",
"iconURL": "https://raw.githubusercontent.com/DRKCTRLDEV/DRKSRC/main/static/assets/DRKSRC (No-Icon).png",
"versions": [
{
"version": "0.0.1",
"date": "2023-05-21",
"downloadURL": "https://github.com/khanhduytran0/CAPerfHUD/releases/download/0.0.1/com.kdt.caperfhud_0.0.1.ipa",
"size": 11320
}
],
"screenshotURLs": [
"https://raw.githubusercontent.com/DRKCTRLDEV/DRKSRC/main/Apps/CAPerfHUD/screenshots/IMG_1.png"
],
"appPermissions": {}
},
{
"name": "Cowabunga",
"bundleIdentifier": "com.leminlimez.cowabunga",
"developerName": "leminlimez",
"subtitle": "A Jailed Toolbox for iOS",
"localizedDescription": "Cowabunga is a jailed toolbox for iOS 14.0-16.1.2 using CVE-2022-46689. It is archived and won't receive updates. Enable Notifications and set Location Services to Always for optimal performance. Note: Some changes are permanent on iOS 14.0-14.8.1.",
"iconURL": "https://raw.githubusercontent.com/DRKCTRLDEV/DRKSRC/main/static/assets/DRKSRC (No-Icon).png",
"versions": [
{
"version": "10.3.2",
"date": "2023-05-29",
"downloadURL": "https://github.com/leminlimez/Cowabunga/releases/download/v10.3.2/Cowabunga.ipa",
"size": 16288960
},
{
"version": "10.3.1",
"date": "2023-05-29",
"downloadURL": "https://github.com/leminlimez/Cowabunga/releases/download/v10.3.1/Cowabunga.ipa",
"size": 16288883
},
{
"version": "10.3.0",
"date": "2023-05-29",
"downloadURL": "https://github.com/leminlimez/Cowabunga/releases/download/v10.3.0/Cowabunga.ipa",
"size": 16285936
},
{
"version": "10.2.0",
"date": "2023-05-12",
"downloadURL": "https://github.com/leminlimez/Cowabunga/releases/download/v10.2.0/Cowabunga.ipa",
"size": 16280833
},
{
"version": "10.1.1",
"date": "2023-03-30",
"downloadURL": "https://github.com/leminlimez/Cowabunga/releases/download/v10.1.1/Cowabunga.ipa",
"size": 21605355
},
{
"version": "10.1.0",
"date": "2023-03-28",
"downloadURL": "https://github.com/leminlimez/Cowabunga/releases/download/v10.1.0/Cowabunga.ipa",
"size": 21595880
},
{
"version": "10.0.3",
"date": "2023-03-25",
"downloadURL": "https://github.com/leminlimez/Cowabunga/releases/download/v10.0.3/Cowabunga.ipa",
"size": 21557626
},
{
"version": "10.0.2",
"date": "2023-03-25",
"downloadURL": "https://github.com/leminlimez/Cowabunga/releases/download/v10.0.2/Cowabunga.ipa",
"size": 21557066
},
{
"version": "10.0.1",
"date": "2023-03-24",
"downloadURL": "https://github.com/leminlimez/Cowabunga/releases/download/v10.0.1/Cowabunga.ipa",
"size": 21557390
},
{
"version": "10.0.0",
"date": "2023-03-23",
"downloadURL": "https://github.com/leminlimez/Cowabunga/releases/download/v10.0.0/Cowabunga.ipa",
"size": 21556671
}
],
"screenshotURLs": [
"https://raw.githubusercontent.com/DRKCTRLDEV/DRKSRC/main/Apps/Cowabunga/screenshots/IMG_1.png",
"https://raw.githubusercontent.com/DRKCTRLDEV/DRKSRC/main/Apps/Cowabunga/screenshots/IMG_2.png",
"https://raw.githubusercontent.com/DRKCTRLDEV/DRKSRC/main/Apps/Cowabunga/screenshots/IMG_3.png",
"https://raw.githubusercontent.com/DRKCTRLDEV/DRKSRC/main/Apps/Cowabunga/screenshots/IMG_4.png"
],
"appPermissions": {}
},
{
"name": "EeveeSpotify",
"bundleIdentifier": "com.spotify.client",
"developerName": "whoeevee",
"subtitle": "Free Spotify Premium Tweak",
"localizedDescription": "EeveeSpotify is an open-source iOS tweak that unlocks Spotify Premium features, including ad-free listening and unlimited skips, by intercepting and modifying user data in real-time. It supports lyrics from providers like Genius and Musixmatch but cannot enable offline downloads due to server-side limitations.",
"iconURL": "https://raw.githubusercontent.com/DRKCTRLDEV/DRKSRC/main/static/assets/DRKSRC (No-Icon).png",
"versions": [
{
"version": "6.0.2",
"date": "2025-07-05",
"downloadURL": "https://github.com/whoeevee/EeveeSpotify/releases/download/swift6.0.2/EeveeSpotify-6.0.2-9.0.58-patched.ipa",
"size": 86744126
},
{
"version": "6.0.2",
"date": "2025-07-05",
"downloadURL": "https://github.com/whoeevee/EeveeSpotify/releases/download/swift6.0.2/EeveeSpotify-6.0.2-9.0.58.ipa",
"size": 84840587
},
{
"version": "6.0.2",
"date": "2025-07-05",
"downloadURL": "https://github.com/whoeevee/EeveeSpotify/releases/download/swift6.0.2/EeveeSpotify-6.0.2-9.0.60-patched.ipa",
"size": 87397965
},
{
"version": "6.0.2",
"date": "2025-07-05",
"downloadURL": "https://github.com/whoeevee/EeveeSpotify/releases/download/swift6.0.2/EeveeSpotify-6.0.2-9.0.60.ipa",
"size": 85483040
},
{
"version": "6.0.1",
"date": "2025-06-27",
"downloadURL": "https://github.com/whoeevee/EeveeSpotify/releases/download/swift6.0.1/EeveeSpotify-6.0.1-9.0.56-patched.ipa",
"size": 86587225
},
{
"version": "6.0.1",
"date": "2025-06-27",
"downloadURL": "https://github.com/whoeevee/EeveeSpotify/releases/download/swift6.0.1/EeveeSpotify-6.0.1-9.0.56.ipa",
"size": 84686653
},
{
"version": "6.0",
"date": "2025-06-20",
"downloadURL": "https://github.com/whoeevee/EeveeSpotify/releases/download/swift6.0/EeveeSpotify-6.0-9.0.52.ipa",
"size": 84187021
},
{
"version": "5.9.9",
"date": "2025-05-31",
"downloadURL": "https://github.com/whoeevee/EeveeSpotify/releases/download/swift5.9.9/EeveeSpotify-5.9.9-9.0.48.ipa",
"size": 83888442
},
{
"version": "5.9.9",
"date": "2025-05-31",
"downloadURL": "https://github.com/whoeevee/EeveeSpotify/releases/download/swift5.9.9/EeveeSpotify-5.9.9-9.0.50.ipa",
"size": 83866412
},
{
"version": "5.9.8",
"date": "2025-05-27",
"downloadURL": "https://github.com/whoeevee/EeveeSpotify/releases/download/swift5.9.8/EeveeSpotify-5.9.8-9.0.46.ipa",
"size": 83825465
}
],
"screenshotURLs": [
"https://raw.githubusercontent.com/DRKCTRLDEV/DRKSRC/main/Apps/EeveeSpotify/screenshots/IMG_1.png",
"https://raw.githubusercontent.com/DRKCTRLDEV/DRKSRC/main/Apps/EeveeSpotify/screenshots/IMG_2.png",
"https://raw.githubusercontent.com/DRKCTRLDEV/DRKSRC/main/Apps/EeveeSpotify/screenshots/IMG_3.png",
"https://raw.githubusercontent.com/DRKCTRLDEV/DRKSRC/main/Apps/EeveeSpotify/screenshots/IMG_4.png"
],
"appPermissions": {}
},
{
"name": "EnableQUIC",
"bundleIdentifier": "com.developlab.EnableQUIC",
"developerName": "DevelopCubeLab",
"subtitle": "Enables QUIC for iOS",
"localizedDescription": "QUIC, which stands for Quick UDP Internet Connections, is a modern transport layer network protocol designed to improve the performance of web applications over traditional protocols like TCP and TLS.",
"iconURL": "https://raw.githubusercontent.com/DRKCTRLDEV/DRKSRC/main/static/assets/DRKSRC (No-Icon).png",
"versions": [
{
"version": "1.2.4",
"date": "2025-02-21",
"downloadURL": "https://github.com/DevelopCubeLab/EnableQUIC/releases/download/1.2.4/EnableQUIC_1.2.4.tipa",
"size": 362372
},
{
"version": "1.2.3",
"date": "2025-02-18",
"downloadURL": "https://github.com/DevelopCubeLab/EnableQUIC/releases/download/1.2.3/EnableQUIC_1.2.3.tipa",
"size": 362053
},
{
"version": "1.2.2",
"date": "2025-02-18",
"downloadURL": "https://github.com/DevelopCubeLab/EnableQUIC/releases/download/1.2.2/EnableQUIC_1.2.2.tipa",
"size": 361420
},
{
"version": "1.2.1",
"date": "2025-02-18",
"downloadURL": "https://github.com/DevelopCubeLab/EnableQUIC/releases/download/1.2.1/EnableQUIC_1.2.1.tipa",
"size": 350550
},
{
"version": "1.2",
"date": "2025-02-16",
"downloadURL": "https://github.com/DevelopCubeLab/EnableQUIC/releases/download/1.2/EnableQUIC_1.2.tipa",
"size": 350546
},
{
"version": "1.1",
"date": "2025-02-12",
"downloadURL": "https://github.com/DevelopCubeLab/EnableQUIC/releases/download/1.1/EnableQUIC_1.1.tipa",
"size": 335559
},
{
"version": "1.0-beta",
"date": "2025-01-01",
"downloadURL": "https://github.com/DevelopCubeLab/EnableQUIC/releases/download/1.0-beta/EnableQUIC_1.0-beta.tipa",
"size": 334038
}
],
"screenshotURLs": [
"https://raw.githubusercontent.com/DRKCTRLDEV/DRKSRC/main/Apps/EnableQUIC/screenshots/IMG_1.png"
],
"appPermissions": {}
},
{
"name": "Filza",
"bundleIdentifier": "com.tigisoftware.Filza",
"developerName": "TIGI Software",
"subtitle": "Powerful File Manager for iOS",
"localizedDescription": "Filza is a comprehensive file manager for iOS devices. It offers features like file/folder exploration, powerful file viewers including media player and office document support, file sharing capabilities, terminal access, music library management, package installation, and cloud service integration.",
"iconURL": "https://raw.githubusercontent.com/DRKCTRLDEV/DRKSRC/main/static/assets/DRKSRC (No-Icon).png",
"versions": [
{
"version": "4.0.2",
"date": "2024-07-24",
"downloadURL": "https://raw.githubusercontent.com/DRKCTRLDEV/DRKSRC/main/static/IPA/Filza_NoURLScheme_4.0.2.ipa",
"size": 13925062
},
{
"version": "4.0.0",
"date": "2023-01-10",
"downloadURL": "https://raw.githubusercontent.com/DRKCTRLDEV/DRKSRC/main/static/IPA/Filza_NoURLScheme_4.0.0.ipa",
"size": 13893015
},
{
"version": "3.9.8",
"date": "2022-10-30",
"downloadURL": "https://raw.githubusercontent.com/DRKCTRLDEV/DRKSRC/main/static/IPA/Filza_NoURLScheme_3.9.8.ipa",
"size": 14100822
}
],
"screenshotURLs": [
"https://raw.githubusercontent.com/DRKCTRLDEV/DRKSRC/main/Apps/Filza/screenshots/IMG_1.png",
"https://raw.githubusercontent.com/DRKCTRLDEV/DRKSRC/main/Apps/Filza/screenshots/IMG_2.png",
"https://raw.githubusercontent.com/DRKCTRLDEV/DRKSRC/main/Apps/Filza/screenshots/IMG_3.png",
"https://raw.githubusercontent.com/DRKCTRLDEV/DRKSRC/main/Apps/Filza/screenshots/IMG_4.png"
],
"appPermissions": {}
},
{
"name": "FridaCodeManager",
"bundleIdentifier": "com.sparklechan.swifty",
"developerName": "fridakitten",
"subtitle": "Advanced Frida Code Management Tool",
"localizedDescription": "FridaCodeManager is a comprehensive tool for managing and organizing Frida code projects. Features include permission management, project repair capabilities, app/project exports, multithreading support for folder navigation, file grouping, and an enhanced user interface with smooth animations.",
"iconURL": "https://raw.githubusercontent.com/DRKCTRLDEV/DRKSRC/main/static/assets/DRKSRC (No-Icon).png",
"versions": [
{
"version": "1.6",
"date": "2024-10-22",
"downloadURL": "https://github.com/seanistethered/FridaCodeManager/releases/download/v1.6/FridaCodeManager-trollstore.tipa",
"size": 70613655
},
{
"version": "1.6",
"date": "2024-10-22",
"downloadURL": "https://github.com/seanistethered/FridaCodeManager/releases/download/v1.6/FridaCodeManager-stock-alpha.ipa",
"size": 66806491
},
{
"version": "1.6",
"date": "2024-10-22",
"downloadURL": "https://github.com/cr4zyengineer/FridaCodeManager/releases/download/v1.6/FridaCodeManager-trollstore.tipa",
"size": 70613655
},
{
"version": "1.6",
"date": "2024-10-22",
"downloadURL": "https://github.com/cr4zyengineer/FridaCodeManager/releases/download/v1.6/FridaCodeManager-stock-alpha.ipa",
"size": 66806491
},
{
"version": "1.5.5",
"date": "2024-10-14",
"downloadURL": "https://github.com/seanistethered/FridaCodeManager/releases/download/v1.5.5/FridaCodeManager.tipa",
"size": 108290634
},
{
"version": "1.5.5",
"date": "2024-10-14",
"downloadURL": "https://github.com/cr4zyengineer/FridaCodeManager/releases/download/v1.5.5/FridaCodeManager.tipa",
"size": 108290634
}
],
"screenshotURLs": [
"https://raw.githubusercontent.com/DRKCTRLDEV/DRKSRC/main/Apps/FridaCodeManager/screenshots/IMG_1.png",
"https://raw.githubusercontent.com/DRKCTRLDEV/DRKSRC/main/Apps/FridaCodeManager/screenshots/IMG_2.png",
"https://raw.githubusercontent.com/DRKCTRLDEV/DRKSRC/main/Apps/FridaCodeManager/screenshots/IMG_3.png",
"https://raw.githubusercontent.com/DRKCTRLDEV/DRKSRC/main/Apps/FridaCodeManager/screenshots/IMG_4.png"
],
"appPermissions": {}
},
{
"name": "FrontBoardAppLauncher",
"bundleIdentifier": "com.kdt.frontboardapplauncher",
"developerName": "khanhduytran0",
"subtitle": "Launch Apps via FrontBoard",
"localizedDescription": "FrontBoardAppLauncher is a utility that allows you to launch apps using FrontBoard on iOS devices. It provides a simple interface to interact with the FrontBoard framework for app management.",
"iconURL": "https://raw.githubusercontent.com/DRKCTRLDEV/DRKSRC/main/static/assets/DRKSRC (No-Icon).png",
"versions": [
{
"version": "0.0.1",
"date": "2025-05-15",
"downloadURL": "https://github.com/khanhduytran0/FrontBoardAppLauncher/releases/download/0.0.1/com.kdt.frontboardapplauncher_0.0.1.tipa",
"size": 28649
},
{
"version": "1.3.0",
"date": "2024-11-17",
"downloadURL": "https://github.com/DRKCTRLDEV/FrontBoardAppLauncher/releases/download/1.3.0/FrontBoardAppLauncher.tipa",
"size": 27533
}
],
"screenshotURLs": [
"https://raw.githubusercontent.com/DRKCTRLDEV/DRKSRC/main/Apps/FrontBoardAppLauncher/screenshots/IMG_1.png",
"https://raw.githubusercontent.com/DRKCTRLDEV/DRKSRC/main/Apps/FrontBoardAppLauncher/screenshots/IMG_2.png",
"https://raw.githubusercontent.com/DRKCTRLDEV/DRKSRC/main/Apps/FrontBoardAppLauncher/screenshots/IMG_3.png"
],
"appPermissions": {}
},
{
"name": "Geranium",
"bundleIdentifier": "live.cclerc.geranium",
"developerName": "c22dev, BomberFish, Fiore, Sourcelocation, haxi0",
"subtitle": "LocSim, Cleaner & Utility for TrollStore",
"localizedDescription": "Geranium is a powerful utility for TrollStore users on iOS 15+. Features include location simulation, device cleaning, daemon management, ScreenTime disabling, and device supervision. Supports multiple languages and offers an intuitive interface for enhancing your iOS experience.",
"iconURL": "https://raw.githubusercontent.com/DRKCTRLDEV/DRKSRC/main/static/assets/DRKSRC (No-Icon).png",
"versions": [
{
"version": "1.1.3",
"date": "2024-09-15",
"downloadURL": "https://github.com/c22dev/Geranium/releases/download/1.1.3/Geranium.tipa",
"size": 6100320
},
{
"version": "1.1.2",
"date": "2024-02-22",
"downloadURL": "https://github.com/c22dev/Geranium/releases/download/1.1.2/Geranium.tipa",
"size": 6161855
},
{
"version": "1.1.1",
"date": "2024-02-07",
"downloadURL": "https://github.com/c22dev/Geranium/releases/download/1.1.1/Geranium.tipa",
"size": 6135248
},
{
"version": "1.1",
"date": "2024-01-18",
"downloadURL": "https://github.com/c22dev/Geranium/releases/download/1.1/Geranium.tipa",
"size": 6032621
},
{
"version": "1.0.4",
"date": "2024-01-15",
"downloadURL": "https://github.com/c22dev/Geranium/releases/download/1.0.4/Geranium.tipa",
"size": 5945760
},
{
"version": "1.0.3",
"date": "2024-01-15",
"downloadURL": "https://github.com/c22dev/Geranium/releases/download/1.0.3/Geranium.tipa",
"size": 5945286
},
{
"version": "1.0.2",
"date": "2024-01-15",
"downloadURL": "https://github.com/c22dev/Geranium/releases/download/1.0.2/Geranium.tipa",
"size": 5943936
},
{
"version": "1.0.1",
"date": "2024-01-14",
"downloadURL": "https://github.com/c22dev/Geranium/releases/download/1.0.1/Geranium.tipa",
"size": 5942092
},
{
"version": "1.0",
"date": "2024-01-14",
"downloadURL": "https://github.com/c22dev/Geranium/releases/download/1.0/Geranium.tipa",
"size": 5930930
}
],
"screenshotURLs": [
"https://raw.githubusercontent.com/DRKCTRLDEV/DRKSRC/main/Apps/Geranium/screenshots/IMG_1.png",
"https://raw.githubusercontent.com/DRKCTRLDEV/DRKSRC/main/Apps/Geranium/screenshots/IMG_2.png",
"https://raw.githubusercontent.com/DRKCTRLDEV/DRKSRC/main/Apps/Geranium/screenshots/IMG_3.png",
"https://raw.githubusercontent.com/DRKCTRLDEV/DRKSRC/main/Apps/Geranium/screenshots/IMG_4.png"
],
"appPermissions": {}
},
{
"name": "Helium",
"bundleIdentifier": "com.leemin.helium",
"developerName": "leminlimez",
"subtitle": "Status Bar Widgets for TrollStore",
"localizedDescription": "Helium is a new TrollStore tool that lets users add widgets above or below the Status Bar on iOS versions 14 to 17. To install the Helium IPA, you must use TrollStore, as other IPA installers will not work. The latest version offers seven widgets, and after installation, a new icon will appear on your Home Screen; however, the app may not open if developer mode is disabled. Helium is specifically designed for TrollStore, and sideloading it with other installers will fail. Upon launching, you'll find an interface with Home, Settings, and Customize sections, allowing you to activate the HUD, set the update frequency, and enable widgets based on your Helium version.",
"iconURL": "https://raw.githubusercontent.com/DRKCTRLDEV/DRKSRC/main/static/assets/DRKSRC (No-Icon).png",
"versions": [
{
"version": "3.2.5",
"date": "2024-02-13",
"downloadURL": "https://github.com/leminlimez/Helium/releases/download/v3.2.5/Helium.tipa",
"size": 4168281
},
{
"version": "2.2.1",
"date": "2024-01-13",
"downloadURL": "https://github.com/leminlimez/Helium/releases/download/v2.2.1/Helium.tipa",
"size": 3924363
},
{
"version": "2.2",
"date": "2024-01-13",
"downloadURL": "https://github.com/leminlimez/Helium/releases/download/v2.2/Helium.tipa",
"size": 3896129
},
{
"version": "2.1",
"date": "2024-01-12",
"downloadURL": "https://github.com/leminlimez/Helium/releases/download/v2.1/Helium.tipa",
"size": 3874054
},
{
"version": "2.0.2",
"date": "2023-12-25",
"downloadURL": "https://github.com/leminlimez/Helium/releases/download/v2.0.2/Helium.tipa",
"size": 3829465
},
{
"version": "2.0.1",
"date": "2023-12-21",
"downloadURL": "https://github.com/leminlimez/Helium/releases/download/v2.0.1/Helium.tipa",
"size": 3827002
},
{
"version": "2.0",
"date": "2023-12-21",
"downloadURL": "https://github.com/leminlimez/Helium/releases/download/v2.0/Helium.tipa",
"size": 3813071
},
{
"version": "1.1",
"date": "2023-12-08",
"downloadURL": "https://github.com/leminlimez/Helium/releases/download/v1.1/Helium_ABOVE_STATUS_BAR.tipa",
"size": 4294026
},
{
"version": "1.1",
"date": "2023-12-08",
"downloadURL": "https://github.com/leminlimez/Helium/releases/download/v1.1/Helium_BELOW_STATUS_BAR.tipa",
"size": 4293924
},
{
"version": "1.0",
"date": "2023-11-06",
"downloadURL": "https://github.com/leminlimez/Helium/releases/download/v1.0/Helium.tipa",
"size": 4259160
}
],
"screenshotURLs": [
"https://raw.githubusercontent.com/DRKCTRLDEV/DRKSRC/main/Apps/Helium/screenshots/IMG_1.png",
"https://raw.githubusercontent.com/DRKCTRLDEV/DRKSRC/main/Apps/Helium/screenshots/IMG_2.png",
"https://raw.githubusercontent.com/DRKCTRLDEV/DRKSRC/main/Apps/Helium/screenshots/IMG_3.png",
"https://raw.githubusercontent.com/DRKCTRLDEV/DRKSRC/main/Apps/Helium/screenshots/IMG_4.png"
],
"appPermissions": {}
},
{
"name": "LiveContainer",
"bundleIdentifier": "com.kdt.livecontainer",
"developerName": "khanhduytran0",
"subtitle": "Run iOS apps without installing",
"localizedDescription": "LiveContainer allows you to run iOS apps without actually installing them. It bypasses the 10 app limit of free developer accounts, enables multiple versions of an app, and supports multiple data containers. With JIT, codesigning is bypassed entirely. Features include unlimited app installation, tweak support, and instant app switching.",
"iconURL": "https://raw.githubusercontent.com/DRKCTRLDEV/DRKSRC/main/static/assets/DRKSRC (No-Icon).png",
"versions": [
{
"version": "3.5.1",
"date": "2025-06-16",
"downloadURL": "https://github.com/LiveContainer/LiveContainer/releases/download/3.5.1/LiveContainer.ipa",
"size": 2928772
},
{
"version": "3.5.0",
"date": "2025-06-15",
"downloadURL": "https://github.com/LiveContainer/LiveContainer/releases/download/3.5.0/LiveContainer.ipa",
"size": 2928946
},
{
"version": "3.4.0",
"date": "2025-04-20",
"downloadURL": "https://github.com/LiveContainer/LiveContainer/releases/download/3.4.0/LiveContainer.ipa",
"size": 2764540
},
{
"version": "nightly",
"date": "2025-04-08",
"downloadURL": "https://github.com/LiveContainer/LiveContainer/releases/download/nightly/LiveContainer.ipa",
"size": 2835646
},
{
"version": "3.3.1",
"date": "2025-03-16",
"downloadURL": "https://github.com/khanhduytran0/LiveContainer/releases/download/3.3.1/com.kdt.livecontainer_3.3.1.ipa",
"size": 3146175
},
{
"version": "3.3.1",
"date": "2025-03-16",
"downloadURL": "https://github.com/LiveContainer/LiveContainer/releases/download/3.3.1/com.kdt.livecontainer_3.3.1.ipa",
"size": 3146175
},
{
"version": "3.3.0",
"date": "2025-03-14",
"downloadURL": "https://github.com/khanhduytran0/LiveContainer/releases/download/3.3.0/com.kdt.livecontainer_3.3.0.ipa",
"size": 3155485
},
{
"version": "3.3.0",
"date": "2025-03-14",
"downloadURL": "https://github.com/LiveContainer/LiveContainer/releases/download/3.3.0/com.kdt.livecontainer_3.3.0.ipa",
"size": 3155485
},
{
"version": "3.2.0",
"date": "2025-01-15",
"downloadURL": "https://github.com/khanhduytran0/LiveContainer/releases/download/3.2.0/com.kdt.livecontainer_3.2.0.ipa",
"size": 2962233
},
{
"version": "3.2.0",
"date": "2025-01-15",
"downloadURL": "https://github.com/LiveContainer/LiveContainer/releases/download/3.2.0/com.kdt.livecontainer_3.2.0.ipa",
"size": 2962233
}
],
"screenshotURLs": [
"https://raw.githubusercontent.com/DRKCTRLDEV/DRKSRC/main/Apps/LiveContainer/screenshots/IMG_1.png",
"https://raw.githubusercontent.com/DRKCTRLDEV/DRKSRC/main/Apps/LiveContainer/screenshots/IMG_2.png",
"https://raw.githubusercontent.com/DRKCTRLDEV/DRKSRC/main/Apps/LiveContainer/screenshots/IMG_3.png",
"https://raw.githubusercontent.com/DRKCTRLDEV/DRKSRC/main/Apps/LiveContainer/screenshots/IMG_4.png"
],
"appPermissions": {}
},
{
"name": "NXBoot",
"bundleIdentifier": "com.mologie.NXBoot",
"developerName": "mologie",
"subtitle": "Nintendo Switch Payload Injector",
"localizedDescription": "NXBoot is a powerful utility for Nintendo Switch enthusiasts, allowing users to inject custom payloads into their Switch consoles. It supports various firmware versions and offers an intuitive interface for managing and launching payloads.",
"iconURL": "https://raw.githubusercontent.com/DRKCTRLDEV/DRKSRC/main/static/assets/DRKSRC (No-Icon).png",
"versions": [
{
"version": "0.3.2",
"date": "2024-08-31",
"downloadURL": "https://github.com/mologie/nxboot/releases/download/v0.3.2/NXBoot_0.3.2-1.tipa",
"size": 1045270
},
{
"version": "0.3.1",
"date": "2024-08-30",
"downloadURL": "https://github.com/mologie/nxboot/releases/download/v0.3.1/NXBoot_0.3.1-1.tipa",
"size": 1043645
}
],
"screenshotURLs": [
"https://raw.githubusercontent.com/DRKCTRLDEV/DRKSRC/main/Apps/NXBoot/screenshots/IMG_1.png",
"https://raw.githubusercontent.com/DRKCTRLDEV/DRKSRC/main/Apps/NXBoot/screenshots/IMG_2.png",
"https://raw.githubusercontent.com/DRKCTRLDEV/DRKSRC/main/Apps/NXBoot/screenshots/IMG_3.png"
],
"appPermissions": {}
},
{
"name": "Nugget",
"bundleIdentifier": "com.leemin.nugget",
"developerName": "leminlimez",
"subtitle": "iOS 16.0-18.1b4 Device Unlock Tool",
"localizedDescription": "Unlock your device's full potential on iOS 16.0 through 18.1 beta 4, with partial support for iOS 18.1 beta 5-6. Note: Does not work on iOS 18.1 beta 7 or newer - use PC version instead. Requires .mobiledevicepairing file and wireguard. Uses sparserestore exploit to write to files outside intended restore location, like mobilegestalt. CAUTION: Back up your data before using. Developer not responsible for bootloops or other issues.",
"iconURL": "https://raw.githubusercontent.com/DRKCTRLDEV/DRKSRC/main/static/assets/DRKSRC (No-Icon).png",
"versions": [
{
"version": "2.0.1",
"date": "2024-12-01",
"downloadURL": "https://github.com/leminlimez/Nugget-Mobile/releases/download/v2.0.1/Nugget.ipa",
"size": 7676570
},
{
"version": "2.0",
"date": "2024-10-17",
"downloadURL": "https://github.com/leminlimez/Nugget-Mobile/releases/download/v2.0/Nugget.ipa",
"size": 7675473
},
{
"version": "1.0.1",
"date": "2024-09-23",
"downloadURL": "https://github.com/leminlimez/Nugget-Mobile/releases/download/v1.0.1/Nugget.ipa",
"size": 7742363
},
{
"version": "1.0",
"date": "2024-09-22",
"downloadURL": "https://github.com/leminlimez/Nugget-Mobile/releases/download/v1.0/Nugget.ipa",
"size": 7741677
}
],
"screenshotURLs": [
"https://raw.githubusercontent.com/DRKCTRLDEV/DRKSRC/main/Apps/Nugget/screenshots/IMG_1.png",
"https://raw.githubusercontent.com/DRKCTRLDEV/DRKSRC/main/Apps/Nugget/screenshots/IMG_2.png",
"https://raw.githubusercontent.com/DRKCTRLDEV/DRKSRC/main/Apps/Nugget/screenshots/IMG_3.png",
"https://raw.githubusercontent.com/DRKCTRLDEV/DRKSRC/main/Apps/Nugget/screenshots/IMG_4.png"
],
"appPermissions": {}
},
{
"name": "PureKFD",
"bundleIdentifier": "uwu.lrdsnow.purekfdiOS",
"developerName": "Lrdsnow",
"subtitle": "The Purest iOS Toolbox",
"localizedDescription": "PureKFD is an exploit-based jailed package manager supporting iOS versions 14.0 through 18.0/18.1b4. It utilizes SparseRestore CVE-2024-44252, KFD CVE-2023-41974, and MDC CVE-2022-46689 to allow users to customize their experience through a user-friendly interface.",
"iconURL": "https://raw.githubusercontent.com/DRKCTRLDEV/DRKSRC/main/static/assets/DRKSRC (No-Icon).png",
"versions": [
{
"version": "6.0.2",
"date": "2024-11-23",
"downloadURL": "https://github.com/Lrdsnow/PureKFD/releases/download/6.0.2/PureKFD.ipa",
"size": 10806164
},
{
"version": "6.0.2",
"date": "2024-11-23",
"downloadURL": "https://github.com/Lrdsnow/PureKFD/releases/download/6.0.2/PureKFD.noSparse.ts.ipa",
"size": 4042969
},
{
"version": "6.0.2",
"date": "2024-11-23",
"downloadURL": "https://github.com/Lrdsnow/PureKFD/releases/download/6.0.2/PureKFD.noSparse.ipa",
"size": 3932657
},
{
"version": "6.0.1",
"date": "2024-09-29",
"downloadURL": "https://github.com/Lrdsnow/PureKFD/releases/download/6.0.1/PureKFD.ipa",
"size": 10882263
},
{
"version": "6.0.1",
"date": "2024-09-29",
"downloadURL": "https://github.com/Lrdsnow/PureKFD/releases/download/6.0.1/PureKFD.noSparse.ts.ipa",
"size": 4047225
},
{
"version": "6.0.1",
"date": "2024-09-29",
"downloadURL": "https://github.com/Lrdsnow/PureKFD/releases/download/6.0.1/PureKFD.noSparse.ipa",
"size": 4005315
},
{
"version": "6.0",
"date": "2024-09-22",
"downloadURL": "https://github.com/Lrdsnow/PureKFD/releases/download/6.0/PureKFD.ipa",
"size": 10025476
},
{
"version": "6.0",
"date": "2024-09-22",
"downloadURL": "https://github.com/Lrdsnow/PureKFD/releases/download/6.0/PureKFD.noSparse.ts.ipa",
"size": 3191275
},
{
"version": "6.0",
"date": "2024-09-22",
"downloadURL": "https://github.com/Lrdsnow/PureKFD/releases/download/6.0/PureKFD.noSparse.ipa",
"size": 3150038
},
{
"version": "5.2.1",
"date": "2024-07-30",
"downloadURL": "https://github.com/Lrdsnow/PureKFD/releases/download/5.2.1/purekfd.ipa",
"size": 24374136
}
],
"screenshotURLs": [
"https://raw.githubusercontent.com/DRKCTRLDEV/DRKSRC/main/Apps/PureKFD/screenshots/IMG_1.png",
"https://raw.githubusercontent.com/DRKCTRLDEV/DRKSRC/main/Apps/PureKFD/screenshots/IMG_2.png",
"https://raw.githubusercontent.com/DRKCTRLDEV/DRKSRC/main/Apps/PureKFD/screenshots/IMG_3.png",
"https://raw.githubusercontent.com/DRKCTRLDEV/DRKSRC/main/Apps/PureKFD/screenshots/IMG_4.png"
],
"appPermissions": {}
},
{
"name": "PurePKG",
"bundleIdentifier": "uwu.lrdsnow.purepkg",
"developerName": "Lrdsnow",
"subtitle": "The Purest Jailbreak Package Manager",
"localizedDescription": "PurePKG is a customization-focused jailbreak package manager for a truly modern jailbreak experience. Supports iOS 14.0+, tvOS 14.0+, MacOS 13.0+, watchOS 8.0+, and visionOS 1.0+.",
"iconURL": "https://raw.githubusercontent.com/DRKCTRLDEV/DRKSRC/main/static/assets/DRKSRC (No-Icon).png",
"versions": [
{
"version": "2.0.2",
"date": "2024-07-24",
"downloadURL": "https://github.com/Lrdsnow/purepkg/releases/download/2.0.2/PurePKG.tipa",
"size": 6637698
},
{
"version": "2.0.2",
"date": "2024-07-24",
"downloadURL": "https://github.com/Lrdsnow/purepkg/releases/download/2.0.2/PurePKGDemo.ipa",