-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrepo.json
1600 lines (1600 loc) · 113 KB
/
repo.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": "Atylo's Repo",
"identifier": "com.atylorepo.source",
"sourceURL": "https://atylo.github.io/repo.json",
"sourceIconURL": "https://i.imgur.com/8mhNRDS.png",
"iconURL": "https://i.imgur.com/8mhNRDS.png",
"headerURL": "https://i.imgur.com/3qxtpnr.png",
"news": [],
"userInfo": {},
"apps": [
{
"name": "Loopsie++",
"bundleIdentifier": "com.gamelounge.loopsie.ios",
"developerName": "CodeVN",
"version": "8.14.0",
"versionDate": "2024-10-16",
"versionDescription": "",
"downloadURL": "https://mixcell-my.sharepoint.com/personal/admin_namlee_net/_layouts/15/download.aspx?share=Ed-aWv-vW0NCpEtsPQ0qeVkBap_dPxC6HA2wc11ND7kUyw",
"localizedDescription": "Turn every pic into an incredible 3D photo! Choose from dozens of unique 3D stickers: butterflies, bubbles, sparkles, snow, and many more.\n\nWe update new effects or presets every week!\n\nLoopsie lets you create stunning photo edits with stickers, special effects, filters and theme presets! Our animation allows you to create 3D Photos, D3D Camera like videos and much more. All-in-one app without any professional equipment. Just a bit of creativity and your photos will come to life with a stunning cinematic effect!\n\nOur motion photo effects make your short videos unique and let your content stand out from other photos and videos. Forget those old photo filters and photo editor, welcome our new breathtaking video loops.\n\n\u2014 Anime Effect \u2014\n\nMake your photo viral by turning yourself into an anime character with our advanced AI technology. It only requires one tap and a few seconds of processing, you will be able to export a 100% cartoon-like portrait!\n\n\u2014 Popular Presets & Special Effects \u2014\n\nAnime, Legends, Vertigo, Motion blur\n\nButterfly, Neon, Sparkle, Cloud, Vaporware, vhs, Indie\n\n\u2014 3D Photo \u2014\n\nAdd a new dimension to your photos.\n\nYou can use our integrated 3D camera or create a 3D photo starting from a normal photo.\n\nYou can choose between a vintage effect like a D3D camera, or a standard high quality 3D picture. Loopsie mimics many movement, from the classic 360 wiggle, to a vertical fast movement.\n\n\u2014 Advanced Technologies \u2014\n\nMachine Learning Based Depth Prediction:\n\nWe built a Neural Network that accurately predicts the depth of every photo.\n\nAugmented Reality Stickers:\n\nLoopsie enriches the picture with 3D augmented reality stickers.\n\nAdvanced 3D Scene Reconstruction:\n\nWe developed a unique algorithm to fill the missing part of the 3D scene\n\n3D Segmentation:\n\nThe neural network we developed will segment the subjects from the scene for a more dimensional view.",
"iconURL": "https://i0.wp.com/ipacrack.com/wp-content/uploads/2023/08/Loopsie-Deforum-AI-Art.jpeg",
"tintColor": "663399",
"size": 123000000,
"screenshotURLs": [
"https://ipa.cypwn.xyz/assets/images/ipalibrary.png"
],
"subtitle": "Loopsie++",
"absoluteVersion": "8.14.0",
"appID": "",
"category": "AI",
"versions": [
{
"version": "8.14.0",
"date": "2024-10-16",
"downloadURL": "https://mixcell-my.sharepoint.com/personal/admin_namlee_net/_layouts/15/download.aspx?share=Ed-aWv-vW0NCpEtsPQ0qeVkBap_dPxC6HA2wc11ND7kUyw",
"localizedDescription": "8.14.0",
"size": 123000000,
"absoluteVersion": "8.14.0"
}
]
},
{
"name": "Chat AI++",
"bundleIdentifier": "com.eleven.chatgpt",
"developerName": "CodeVN",
"version": "1.9",
"versionDate": "2023-05-24",
"versionDescription": "",
"downloadURL": "https://ia600509.us.archive.org/6/items/chat-ai-1.9-le-ti/CHAT%20AI%2B%2B_1.9_LeTi.ipa",
"localizedDescription": "Chat AI Ask Anything app",
"iconURL": "https://i0.wp.com/ipacrack.com/wp-content/uploads/2023/08/Chat-AI-Ask-Anything.jpeg",
"tintColor": "663399",
"size": 150000000,
"screenshotURLs": [
"https://ipa.cypwn.xyz/assets/images/ipalibrary.png"
],
"subtitle": "Chat AI Ask Anything app",
"absoluteVersion": "1.9",
"appID": "",
"category": "Tweaked Apps",
"versions": [
{
"version": "1.9",
"date": "2023-05-24",
"downloadURL": "https://ia600509.us.archive.org/6/items/chat-ai-1.9-le-ti/CHAT%20AI%2B%2B_1.9_LeTi.ipa",
"localizedDescription": "1.9",
"size": 150000000,
"absoluteVersion": "1.9"
}
]
},
{
"name": "Dreamerland++",
"bundleIdentifier": "art.dreamerai.ios",
"developerName": "CodeVN",
"version": "1.23.3",
"versionDate": "2024-10-16",
"versionDescription": "",
"downloadURL": "https://mixcell-my.sharepoint.com/personal/admin_namlee_net/_layouts/15/download.aspx?share=EYgjasmSZpxItplORNMjsjAB47Inaf3YhzgL7FrqVtKuTQ",
"localizedDescription": "Unleash your creativity with Dreamerland! Create stunning AI generated art in any style you can imagine. Download now and inspire others with your unique creations!\n\nThe All-in-one AI art generation tool! Let your imagination run wild as you create beautiful, unique and captivating pieces of art with the help of our advanced AI algorithms.\n\nWhether you\u2019re an artist, designer, or simply looking for a new creative outlet, Dreamerland is the perfect tool for you. With its intuitive interface and powerful AI engine, you\u2019ll be able to create stunning pieces of art with just a few taps.\n\nFrom anime to realistic, Dreamerland has got you covered. Choose from a vast library of styles and themes, or create your own custom style with ease. The possibilities are endless, and the results are truly breathtaking.\n\nSo why wait? Download Dreamerland today and unleash your inner artist!\n\n\u2013 No skill needed\n\nDreamerland is designed to be easy and accessible for everyone, regardless of your artistic skills or experience. Whether you\u2019re a professional artist or have never created art before, you can use Dreamerland to generate beautiful, one-of-a-kind pieces. With no skill required, you can unleash your imagination and create stunning art with ease!\n\n\u2013 Explore more than 100+ styles\n\nWith Dreamerland, you\u2019ll have access to a vast library of styles and themes, allowing you to generate art in a wide range of styles. Whether you prefer anime, abstract, realistic, or something in-between, there\u2019s a style for everyone! With over 100 styles to choose from, the possibilities for your art are endless.\n\n\u2013 Unleash your creativity\n\nLet your imagination run wild and create art that\u2019s truly unique and personal. With Dreamerland, you\u2019ll have the power to generate art in any style you can imagine. Whether you\u2019re looking to create a piece for your work or just for fun, Dreamerland is the perfect generator for you!\n\n\u2013 Share your creations with the world\n\nShow off your art to the world and share it with your friends and community. Dreamerland makes it easy to share your creations on social media, or save them to your device for later. Impress your friends and inspire others with your unique and personal art, created by Dreamerland!\n\n\u2013 How does it Work?\n\n1. Input the dream you think of\n\n2. Choose a style or theme you want\n\n3. Let AI create the art\n\n4. Save and share it to the world.",
"iconURL": "https://i0.wp.com/ipacrack.com/wp-content/uploads/2023/06/Dreamerland.jpeg",
"tintColor": "663399",
"size": 150000000,
"screenshotURLs": [
"https://ipa.cypwn.xyz/assets/images/ipalibrary.png"
],
"subtitle": "Create stunning AI generated art",
"absoluteVersion": "1.23.3",
"appID": "",
"category": "AI",
"versions": [
{
"version": "1.18.3",
"date": "2024-04-20",
"downloadURL": "https://ia800204.us.archive.org/3/items/dreamerland-1.18.3-le-ti/Dreamerland%2B%2B_1.18.3_LeTi.ipa",
"localizedDescription": "1.18.3",
"size": 150000000,
"absoluteVersion": "1.18.3"
}
]
},
{
"name": "uYouEnhanced",
"bundleIdentifier": "com.google.ios.youtube",
"developerName": "MiRO",
"version": "19.24.3",
"versionDate": "2024-06-18",
"versionDescription": "works",
"downloadURL": "https://files.drifty.win/uYouEnhanced/uYouEnhanced_19.24.3-3.0.4.ipa",
"localizedDescription": "This doesn't crash, but bugs with playback present, video buffers and you may see ads occasionally. Updated version of uYou, with uYouPlus and Extra to work in 2024. Current YouTube IPA: v19.14.2\nCurrent uYou Version: v3.0.3\n",
"iconURL": "https://user-images.githubusercontent.com/78001398/271790092-006e81cc-715a-4fbc-aff6-15832e2da8c4.png",
"tintColor": "663399",
"size": 150000000,
"screenshotURLs": [
"https://ipa.cypwn.xyz/assets/images/ipalibrary.png"
],
"subtitle": "uYouEnhanced",
"absoluteVersion": "19.24.3",
"appID": "",
"category": "Tweaked Apps",
"versions": [
{
"version": "19.24.3",
"date": "2024-06-18",
"downloadURL": "https://files.drifty.win/uYouEnhanced/uYouEnhanced_19.24.3-3.0.4.ipa",
"localizedDescription": "Newest by 19.24.3 by drifty? Might be shady and laggy.",
"size": 150000000,
"absoluteVersion": "19.24.3"
},
{
"version": "19.21.2",
"date": "2024-06-05",
"downloadURL": "https://archive.org/download/YouTubeRebornPlus_19.10.5-4.2.6/yt-uYE-19212-304.ipa",
"localizedDescription": "Latest by arichornlover. 19.21.2. This version doesn't crash anymore.",
"size": 150000000,
"absoluteVersion": "19.21.2"
}
]
},
{
"name": "uYou",
"bundleIdentifier": "com.google.ios.youtube",
"developerName": "MiRO",
"version": "19.06.2",
"versionDate": "2024-04-20",
"versionDescription": "",
"downloadURL": "https://ia800208.us.archive.org/18/items/you-tube-19.06.2-u-you-3.0.3-le-ti/YouTube_19.06.2_uYou_3.0.3_LeTi.ipa",
"localizedDescription": "Updated version of uYou, with uYouPlus. Current YouTube IPA: v19.06.2\nCurrent uYou Version: v3.0.3\n",
"iconURL": "https://ipacrack.com/wp-content/uploads/2021/03/Youtube-Bat.png",
"tintColor": "663399",
"size": 150000000,
"screenshotURLs": [
"https://ipa.cypwn.xyz/assets/images/ipalibrary.png"
],
"subtitle": "uYou",
"absoluteVersion": "19.06.2",
"appID": "",
"category": "Tweaked Apps",
"versions": [
{
"version": "19.06.2",
"date": "2024-02-27",
"downloadURL": "https://ia800208.us.archive.org/18/items/you-tube-19.06.2-u-you-3.0.3-le-ti/YouTube_19.06.2_uYou_3.0.3_LeTi.ipa",
"localizedDescription": "19.06.2",
"size": 150000000,
"absoluteVersion": "19.06.2"
}
]
},
{
"name": "UniDream++",
"bundleIdentifier": "com.thirteenleafclover.art.generator",
"developerName": "CodeVN",
"version": "5.3",
"versionDate": "2024-04-20",
"versionDescription": "",
"downloadURL": "https://ia800206.us.archive.org/3/items/uni-dream-5.3-le-ti/UniDream%2B%2B_5.3_LeTi.ipa",
"localizedDescription": "Upload photos of yourself, create your own AI art generated avatars for free. UniDream is an AI art generator that provides text to art, AI profile avatar creator, and animated images or videos. Enter a prompt, pick an art style and watch Uni Dream turn your idea into life and generate art in seconds.\n\nHere are the amazing features:\n\n-AI Dream Art & AI Drawing\n\nSimply describe your idea: \u201cAI Art\u201d, \u201dAlien Continent\u201d, \u201cRainbow Unicorn\u201d or anything else you can imagine, choose a style you want, click Create and wait a few seconds, you will be able to see your own Metaverse. Share your pictures with others or use it as wallpaper art, so that others can see your whimsy. Uni Dream uses AI model to create ai art. Our goal is to be one of the best AI Art Generator.\n\n\u2013 AI Avatar Creator\n\nTake your profile pics to the next level using AI avatar maker! Upload photos to generate profile avatars in various styles, scenes, and different gender. Fantasy AI Avatar can generate exclusive pics for you.\n\n\u2013 More Art Models in One app\n\nUni Dream app uses the model trained on stable diffusion. You can choose what you like! You can convert yourself and your pets into anime in a flash.\n\n\u2013 Professional Photo and Video Editor\n\nNow Uni Dream offers many editing options. Easily animate Images and videos! You can generate fantasy art with just a few steps. Turn your selfies, photos of pets, and photos of friends into playful cartoon videos. It\u2019s a fun and easy tool for transforming regular photos into real cartoon videos.",
"iconURL": "https://i0.wp.com/ipacrack.com/wp-content/uploads/2023/02/UniDream-AI.jpeg",
"tintColor": "663399",
"size": 150000000,
"screenshotURLs": [
"https://ipa.cypwn.xyz/assets/images/ipalibrary.png"
],
"subtitle": "create your own AI art generated avatars",
"absoluteVersion": "5.3",
"appID": "",
"category": "AI",
"versions": [
{
"version": "5.3",
"date": "2024-04-20",
"downloadURL": "https://ia800206.us.archive.org/3/items/uni-dream-5.3-le-ti/UniDream%2B%2B_5.3_LeTi.ipa",
"localizedDescription": "5.3",
"size": 150000000,
"absoluteVersion": "5.3"
}
]
},
{
"name": "Photo Of Clarity++",
"bundleIdentifier": "com.bubuyanyu.EnhancerKit",
"developerName": "CodeVN",
"version": "1.8.8",
"versionDate": "2023-05-24",
"versionDescription": "",
"downloadURL": "https://ia600505.us.archive.org/16/items/photo-of-clarity-1.8.8-le-ti/Photo%20Of%20Clarity_1.8.8_LeTi.ipa",
"localizedDescription": "Welcome to Photo Of Clarity, where we specialize in enhancing photos to make them clearer and more vibrant using cutting-edge AI technology. We excel at handling old, stained, damaged, low-resolution, or blurry portrait or landscape photos.\n\n* Perfect Results: Through deep learning and AI visual technology, we continuously optimize our AI models to enhance the quality of your photos.\n\n* Portrait Enhancement: For portrait photos, we utilize AI inference models to reconstruct facial details.\n\n* Colorization: We bring back the colors to grayscale or black-and-white photos, restoring their original vibrancy.\n\n* User-friendly Interface: Simply import your photos and get enhanced images with just a few clicks.\n\n* Privacy Protection: We provide a local processing mode, ensuring that all your photos are processed locally without being uploaded to our servers, protecting your privacy.\n\n* No Ads, No VIP: We are committed to providing a clean and streamlined user experience, which means no annoying ads or additional charges.\n\nWhether you want to preserve precious memories, share beautiful moments, or enhance old photos to make them clearer, Photo Of Clarity is the perfect choice for you. Download now to make your photos clearer and more vibrant!",
"iconURL": "https://i0.wp.com/ipacrack.com/wp-content/uploads/2023/08/Photo-Of-Clarity-AI-Enhancer.jpeg",
"tintColor": "663399",
"size": 150000000,
"screenshotURLs": [
"https://ipa.cypwn.xyz/assets/images/ipalibrary.png"
],
"subtitle": "Photo Of Clarity \u2013 AI Enhancer",
"absoluteVersion": "1.8.8",
"appID": "",
"category": "Tweaked Apps",
"versions": [
{
"version": "1.8.8",
"date": "2023-05-24",
"downloadURL": "https://ia600505.us.archive.org/16/items/photo-of-clarity-1.8.8-le-ti/Photo%20Of%20Clarity_1.8.8_LeTi.ipa",
"localizedDescription": "1.8.8",
"size": 150000000,
"absoluteVersion": "1.8.8"
}
]
},
{
"name": "AirGlow++",
"bundleIdentifier": "com.magicv.airglow",
"developerName": "CodeVN",
"version": "1.0.5",
"versionDate": "2023-05-24",
"versionDescription": "",
"downloadURL": "https://ia600508.us.archive.org/30/items/air-brush-5.7.0-le-ti/AirGlow%2B%2B_1.0.5_LeTi.ipa",
"localizedDescription": "AirGlow transforms your video in an unbelievable experience that you can share everywhere! Tell your stories with your own personal touch! All in real time!\n\nUse AirGlow to:\n\n\u2013 Create magical videos to share\n\n\u2013 Add any kind of filter for a perfect moment\n\n\u2013 Share perfect stories\n\nWhat you can find in AirGlow?\n\n\u2013 RETOUCH VIDEOS\n\n* Perfect smile with whiten feature\n\n* Expand or slim any facial feature\n\n* Plump up lips\n\n* Remove dark circles\n\n* Smooth and glowing skin\n\n* Contouring taken to the next level of perfection\n\n\u2013 SO MANY FILTERS!\n\nThe most incredible filters for all your amazing moments\n\n* Earthy filter\n\n* Modern filter\n\n* Blush filter and so much more\n\nYou can choose a filter a day and add that perfect missing part to the stories you want to tell! All real time!",
"iconURL": "https://i0.wp.com/ipacrack.com/wp-content/uploads/2023/08/AirGlow.jpeg",
"tintColor": "663399",
"size": 150000000,
"screenshotURLs": [
"https://ipa.cypwn.xyz/assets/images/ipalibrary.png"
],
"subtitle": "Create magical videos to share",
"absoluteVersion": "1.0.5",
"appID": "",
"category": "Tweaked Apps",
"versions": [
{
"version": "1.0.5",
"date": "2023-05-24",
"downloadURL": "https://ia600508.us.archive.org/30/items/air-brush-5.7.0-le-ti/AirGlow%2B%2B_1.0.5_LeTi.ipa",
"localizedDescription": "1.0.5",
"size": 150000000,
"absoluteVersion": "1.0.5"
}
]
},
{
"name": "EPIK++",
"bundleIdentifier": "com.snowcorp.epik",
"developerName": "CodeVN",
"version": "4.2.32",
"versionDate": "2023-11-24",
"versionDescription": "",
"downloadURL": "https://ia600509.us.archive.org/33/items/epik-4.2.32-le-ti/EPIK%2B%2B_4.2.32_LeTi.ipa",
"localizedDescription": "Professional photo edit with advanced editing tools.\n\n[ Main features ]\n\n\u25cf Professional editing features\n\nFor color : HSL, Curves, Split tone, Lux, Grain, Vignette\n\nFor perfection : Crop, Rotate, Mirror, Flip, Perspective\n\n\u25cf Perfect portraits\n\nRetouch to remove blemishes, natural Face, trendy Makeup\n\nTouch up, Body, Paint, Hair color, Relight, Mosaic, AI Skin, AI Hairstyle, Reflection\n\n\u25cf Artistic photo styling\n\nTrendy Effects, Stickers, Text, Brush, Time stamp, Draw shapes, Spot Color\n\n[ Creative tools ]\n\n\u25cf Templates updated weekly\n\nUse customizable templates for easy editing\n\n\u25cf Unique style made by you\n\nAdd photos, create stickers using Cutout, use Brushes in your own way, and Create my own filter that is unique\n\n\u25cf Background, Color frame, Border, AI filter, AI Expression\n\n[ For you ]\n\n\u25cf Find plenty of premium features for that perfect photo!\n\nCutout, Remove, Selective, Patch, Relight, Mosaic, Layout, Batch Edit, Collage, Enhance",
"iconURL": "https://i0.wp.com/ipacrack.com/wp-content/uploads/2023/07/EPIK.jpeg",
"tintColor": "663399",
"size": 150000000,
"screenshotURLs": [
"https://ipa.cypwn.xyz/assets/images/ipalibrary.png"
],
"subtitle": "EPIK Pro",
"absoluteVersion": "4.2.32",
"appID": "",
"category": "Tweaked Apps",
"versions": [
{
"version": "4.2.32",
"date": "2023-11-24",
"downloadURL": "https://ia600509.us.archive.org/33/items/epik-4.2.32-le-ti/EPIK%2B%2B_4.2.32_LeTi.ipa",
"localizedDescription": "4.2.32",
"size": 150000000,
"absoluteVersion": "4.2.32"
}
]
},
{
"name": "Genie++",
"bundleIdentifier": "co.appnation.geniechat",
"developerName": "CodeVN",
"version": "5.4.0",
"versionDate": "2023-12-25",
"versionDescription": "",
"downloadURL": "https://ia601806.us.archive.org/3/items/genie-5.4.0-le-ti/Genie%2B%2B_5.4.0_LeTi.ipa",
"localizedDescription": "Genie is a revolutionary AI chatbot powered by ChatGPT & GPT-4, GPT-3.\n\nDiscover the new way of communication and productivity with ChatGPT, a cutting-edge AI-powered chatbot designed to revolutionize the way you interact, learn, and achieve your goals. Powered by OpenAI\u2019s advanced technology, Genie is here to become your ultimate personal assistant, friend, and conversational partner, all in one easy-to-use app.",
"iconURL": "https://i0.wp.com/ipacrack.com/wp-content/uploads/2023/07/Genie.jpeg",
"tintColor": "663399",
"size": 150000000,
"screenshotURLs": [
"https://ipa.cypwn.xyz/assets/images/ipalibrary.png"
],
"subtitle": "",
"absoluteVersion": "5.4.0",
"appID": "",
"category": "Tweaked Apps",
"versions": [
{
"version": "5.4.0",
"date": "2023-12-25",
"downloadURL": "https://ia601806.us.archive.org/3/items/genie-5.4.0-le-ti/Genie%2B%2B_5.4.0_LeTi.ipa",
"localizedDescription": "5.4.0",
"size": 150000000,
"absoluteVersion": "5.4.0"
}
]
},
{
"name": "Prisma++",
"bundleIdentifier": "com.prisma-ai.app",
"developerName": "CodeVN",
"version": "4.7.9",
"versionDate": "2023-05-24",
"versionDescription": "",
"downloadURL": "https://ia802705.us.archive.org/5/items/prisma-4.7.9-le-ti/Prisma%2B%2B_4.7.9_LeTi.ipa",
"localizedDescription": "You don\u2019t need to be an experienced photo editor to turn photos into captivating digital art. Why? Because there\u2019s Prisma for it! With the Prisma photo editor, it\u2019s easy to unleash the artist within and go from average photo to mesmerizing edit in seconds!\n\nRecognized as the App of the Year in 2016 Prisma has a constantly growing community of over 120 million users all over the world. Prisma provides a lot of features both for general and selfie photo editing. Download Prisma and let AI technology convert your photos into an artistic piece!\n\nFEATURES\n\nEXTENSIVE LIBRARY OF STYLES\n\nMore than 500 various styles are waiting for you to be tried out in Prisma\u2019s library. New styles are going live on a daily basis for you to spruce up your creativity. You can also try Portrait styles that are specially designed for making captivating selfies.\n\nTOP-NOTCH FUNCTIONALITY\n\n\u2022Among the best selection of Prisma\u2019s tools to customize your photo, it\u2019s worth mentioning the Portrait Segmentation feature. The essential tool for selfies is set to not only add the style to the whole image but also be applied either to the person or the background separately.\n\n\u2022Another way to enhance your photos without putting too much effort into the editing process is using vivid frames that will complement absolutely any of your photos.\n\n\u2022And the icing on the cake \u2014 Prisma\u2019s feature for background editing. With this tool, you can replace the background of any selfie you want! You can select the background from the colorful templates, or choose any other from your phone\u2019s gallery.",
"iconURL": "https://i0.wp.com/ipacrack.com/wp-content/uploads/2023/07/Prisma.jpeg",
"tintColor": "663399",
"size": 150000000,
"screenshotURLs": [
"https://ipa.cypwn.xyz/assets/images/ipalibrary.png"
],
"subtitle": "Turn photos into art",
"absoluteVersion": "4.7.9",
"appID": "",
"category": "Tweaked Apps",
"versions": [
{
"version": "4.7.9",
"date": "2023-05-24",
"downloadURL": "https://ia802705.us.archive.org/5/items/prisma-4.7.9-le-ti/Prisma%2B%2B_4.7.9_LeTi.ipa",
"localizedDescription": "4.7.9",
"size": 150000000,
"absoluteVersion": "4.7.9"
}
]
},
{
"name": "Police Scanner++",
"bundleIdentifier": "com.policescanner.app",
"developerName": "CodeVN",
"version": "1.5",
"versionDate": "2023-05-24",
"versionDescription": "",
"downloadURL": "https://ia902601.us.archive.org/1/items/police-scanner-1.5-le-ti/Police%20Scanner%2B%2B_1.5_LeTi.ipa",
"localizedDescription": "Police Scanner App lets you discover everything from live police radio, breaking news, fire alarms, terrorism to crimes that are happening nearby. It is the world\u2019s largest source of online scanner streaming service. Stay up to date with your local news, public safety, traffic, as well as major live events in real time.\n\nJoin millions of people who use our services to keep informed of everything that is happening around nearby. Browse through thousands of live feeds from all over the world. Filter scanners by county, state or country with just a few taps.\n\n \n\nFEATURES:\n\n\u2013 Dedicated sections for local, top 100 and custom feeds.\n\n\u2013 Breaking news alerts to get real time updates.\n\n\u2013 GPS tracking to locate the nearest scanners around you.\n\n\u2013 Personalised field designed to store your favourite stations at one place.\n\n\u2013 Background audio streaming option to ease your multitasking experience.\n\n\u2013 Automatic reconnections during any disrupted broadcast.\n\n\u2013 Popularity meter to see the popularity for each feed.\n\n\u2013 See the real time listener number count.\n\n\u2013 Enjoy absolutely ad-free user experience.",
"iconURL": "https://i0.wp.com/ipacrack.com/wp-content/uploads/2023/06/Police-Scanner.jpeg",
"tintColor": "663399",
"size": 150000000,
"screenshotURLs": [
"https://ipa.cypwn.xyz/assets/images/ipalibrary.png"
],
"subtitle": "Police Scanner",
"absoluteVersion": "1.5",
"appID": "",
"category": "Tweaked Apps",
"versions": [
{
"version": "1.5",
"date": "2023-05-24",
"downloadURL": "https://ia902601.us.archive.org/1/items/police-scanner-1.5-le-ti/Police%20Scanner%2B%2B_1.5_LeTi.ipa",
"localizedDescription": "1.5",
"size": 150000000,
"absoluteVersion": "1.5"
}
]
},
{
"name": "Mimo++",
"bundleIdentifier": "com.getmimo.mimo",
"developerName": "CodeVN",
"version": "6.23.0",
"versionDate": "2023-11-24",
"versionDescription": "",
"downloadURL": "https://ia600504.us.archive.org/19/items/mimo-6.23.0-le-ti/Mimo%2B%2B_6.23.0_LeTi.ipa",
"localizedDescription": "To make the coding experience more accessible, intuitive, and user-friendly, we introduce new learning paths (JavaScript and HTML), path UI redesign, and rebranding!\n\n \n\nLearning to code has never been so easy!\n\n \n\nAdvance your career, build apps and websites, or even become a developer. Mimo makes learning to code and diving into computer science as intuitive and easy as possible so that everyone can learn to code \u2013 the skill of the century, step-by-step.\n\n \n\nYou will learn to code in Python, JavaScript, HTML through practice, with bite-size coding lessons, by writing code and running it in our mobile code editor that works like an IDE and lets you run your code, interact with Mimo\u2019s coding community, create projects, learn multiple programming languages, and do much more at your own pace! With Mimo, you can fit coding into a busy daily schedule, whenever you have a few minutes to spare.\n\n \n\nUsed by millions of learners, Mimo is just about the most accessible and effective way to learn to code in Python, JavaScript, HTML, SQL, and more. Our programming courses and lessons are suitable for everyone, even with little or no prior coding experience.\n\n \n\nMimo helps you learn the most popular programming languages like HTML, JavaScript, CSS, Python, SQL, and reach your coding goals:\n\n\u2022 Start the PYTHON path and begin your coding journey with an in-demand and all-purpose language. Learn Python with 2,600+ bite-size exercises, 53+ Concepts, and 32+ Projects that will unlock as you keep expanding your skills.\n\n\u2022 By choosing the WEB DEVELOPMENT path, you\u2019ll dive into building websites with HTML, CSS, and JavaScript. Start your Web Development journey with 13,000+ bite-size exercises, 87+ Concepts, and 62+ Projects.\n\n\u2022 With the SQL curriculum, you\u2019ll dive into data science and learn to analyze data with SQL\n\n \n\nWith Mimo you can:\n\n\u2022 Solve bite-size programming exercises that fit into your daily routine\n\n\u2022 Run code and build a portfolio of projects in Python, JavaScript, HTML\n\n\u2022 Learn programming at your own pace\n\n\u2022 Practice with coding challenges\n\n\u2022 Get a certificate to showcase your coding skills\n\n\u2022 Join a community of millions of coders",
"iconURL": "https://i0.wp.com/ipacrack.com/wp-content/uploads/2023/05/Mimo.jpeg",
"tintColor": "663399",
"size": 150000000,
"screenshotURLs": [
"https://ipa.cypwn.xyz/assets/images/ipalibrary.png"
],
"subtitle": "Mimo",
"absoluteVersion": "6.23.0",
"appID": "",
"category": "Tweaked Apps",
"versions": [
{
"version": "6.23.0",
"date": "2023-11-24",
"downloadURL": "https://ia600504.us.archive.org/19/items/mimo-6.23.0-le-ti/Mimo%2B%2B_6.23.0_LeTi.ipa",
"localizedDescription": "6.23.0",
"size": 150000000,
"absoluteVersion": "6.23.0"
}
]
},
{
"name": "Picture Mushroom++",
"bundleIdentifier": "cn.danatech.pictureMushroom",
"developerName": "CodeVN",
"version": "2.11.1",
"versionDate": "2023-11-24",
"versionDescription": "",
"downloadURL": "https://ia601200.us.archive.org/34/items/picture-mushroom-2.11.1-le-ti/Picture%20Mushroom%2B%2B_2.11.1_LeTi.ipa",
"localizedDescription": "Are you looking for a quick and accurate mushroom identifier? The Picture Mushroom app is right for you!\n\nSimply take or upload a picture of a mushroom, and the Picture Mushroom app will tell you what it is in seconds. The app will offer you several similar species to choose from, and you can find the most exact one by comparing the images. In the scanning result, you can learn lots of useful info including mushroom names, habitats, ways of identifying, and so on. This app will also warn you of some toxic mushrooms so that you can stay away from them to keep safe.\n\nMoreover, the app has many articles about mushrooms, like ways of identifying mushrooms,mushroom-related stories, and more. With the Picture Mushroom app, you can learn the most trending topics in the field.\n\nAdditionally, the app allows you to track your foraging sites for your next picking reference. It will recommend some seasonal mushrooms according to your location, and show the distribution map so that you can know what kind of mushrooms to pick and where to find them. You can also manage and share your identified mushroom with the in-app collection.\n\nWhether you like to collect, study, or teach mushrooms, or just want to learn more about the world of mushrooms, Picture Mushroom is the right tool for beginners and advanced mushroom users.\n\n \n\nKey Features:\n\n\u2013 Fast and accurate ID of numerous species of mushrooms, fungi, and the like\n\n\u2013 Full mushroom encyclopedia including all the info you need to know about mushrooms like name, habitat, identification method, toxicity, and more\n\n\u2013 High-quality articles for you to know the trending topics in the field of mushroom\n\n\u2013 Finely designed and user-friendly interface which allows you to easily identify, learn and share mushrooms\n\n\u2013 Keep track of your foraging site for your next picking reference\n\n\u2013 Recommend seasonal mushrooms of your place and show a mushroom distribution map\n\n\u2013 Easily keep track of the mushrooms you\u2019ve identified in your collection, and share your findings with your friends",
"iconURL": "https://i0.wp.com/ipacrack.com/wp-content/uploads/2023/02/Picture-Mushroom-Fungi-finder.jpeg",
"tintColor": "663399",
"size": 150000000,
"screenshotURLs": [
"https://ipa.cypwn.xyz/assets/images/ipalibrary.png"
],
"subtitle": "Picture Mushroom recognise schrooms",
"absoluteVersion": "2.11.1",
"appID": "",
"category": "Tweaked Apps",
"versions": [
{
"version": "2.11.1",
"date": "2023-11-24",
"downloadURL": "https://ia601200.us.archive.org/34/items/picture-mushroom-2.11.1-le-ti/Picture%20Mushroom%2B%2B_2.11.1_LeTi.ipa",
"localizedDescription": "2.11.1",
"size": 150000000,
"absoluteVersion": "2.11.1"
}
]
},
{
"name": "Picture Bird++",
"bundleIdentifier": "cn.danatech.pictureBird",
"developerName": "CodeVN",
"version": "2.12.19",
"versionDate": "2023-11-24",
"versionDescription": "",
"downloadURL": "https://ia800506.us.archive.org/6/items/picture-bird-2.12.19-le-ti/Picture%20Bird%2B%2B_2.12.19_LeTi.ipa",
"localizedDescription": "Picture Bird is a useful and smart bird identifier app that can recognize any bird species by photo or sound. Simply take/upload a picture of a bird or record a bird\u2019s sound, and you can get everything you want to know about it.\n\nKey Features:\n\nAccurate Bird ID:\n\nWith machine deep learning technology in pictures and sound recognition, the Picture Bird app can identify up to 10,000+ bird species with incredible accuracy. Users can either upload a bird picture or record a bird song or call, and the app will compare it with training sets of millions of photos or sounds in the database and provide the most exact match.\n\nBirding Camera:\n\nAre you still using a heavy camera to photograph birds? A phone app can do this now! Focus your phone camera on a bird, zoom in on the bird to find the best position and the app will automatically sharpen the picture. The Picture Bird app lets you have the most pleasing bird sightseeing experience.\n\nBird Feeding:\n\nDo you want to attract birds to your backyard, or do you want to help birds in need on winter days? Picture Bird can help! Use the filters, and choose your food type and feeder, you will get to know what birds you can attract and how to feed them.\n\nDetailed Bird Info:\n\nFull encyclopedia of bird info. In your identified results, you can get detailed bird info including bird appearance, sound, habitat, distribution, feeding habits, etc. The Picture Insect app also provides high-quality articles on bird ID, attracting tips, birding hints, bird sightings, and more.\n\nUnique Collections:\n\nSave your observations with the in-app collection function and easily manage your findings. Share your happiness with friends with unique bird cards.\n\nWhether you are curious about the name of a bird you met, eager to learn bird-feeding tips, or want to educate your children, Picture Bird will help you in the easiest and most effective way.",
"iconURL": "https://i0.wp.com/ipacrack.com/wp-content/uploads/2023/02/Picture-Bird-Birds-Identifier.jpeg",
"tintColor": "663399",
"size": 150000000,
"screenshotURLs": [
"https://ipa.cypwn.xyz/assets/images/ipalibrary.png"
],
"subtitle": "Picture Bird recognise birds",
"absoluteVersion": "2.12.19",
"appID": "",
"category": "Tweaked Apps",
"versions": [
{
"version": "2.12.19",
"date": "2023-11-24",
"downloadURL": "https://ia800506.us.archive.org/6/items/picture-bird-2.12.19-le-ti/Picture%20Bird%2B%2B_2.12.19_LeTi.ipa",
"localizedDescription": "2.12.19",
"size": 150000000,
"absoluteVersion": "2.12.19"
}
]
},
{
"name": "Animatix",
"bundleIdentifier": "com.codeorgana.animatix",
"developerName": "CodeVN",
"version": "1.4.6",
"versionDate": "2023-05-24",
"versionDescription": "",
"downloadURL": "https://ia800508.us.archive.org/15/items/animatix-1.4.6-le-ti/Animatix_1.4.6_LeTi.ipa",
"localizedDescription": "Animatix turns your photos into captivating animations and cartoons. It uses real-world animation techniques to breathe life into your still photos, adding motion that makes their edges and color come alive. Choose from 24 animation styles, then make your animations pop with any of Animatix\u2019s many unique cartoon, comic, sketch and art effects. Fine-tune your results to get the perfect look and share your creations as GIFs, videos, or Live Photos.\n\n \n\n\u2022 Choose from 24 different animation styles\n\n\u2022 Make your animations pop with various cartoon, comic, sketch and art effects\n\n\u2022 Fine-tune your animations for the perfect look\n\n\u2022 Create GIFs, videos, and Live Photos from your animations\n\n\u2022 Turn off animation to save expressive still photos\n\n\u2022 Share directly to Facebook, Instagram, and more",
"iconURL": "https://i0.wp.com/ipacrack.com/wp-content/uploads/2023/01/Animatix.png",
"tintColor": "663399",
"size": 150000000,
"screenshotURLs": [
"https://ipa.cypwn.xyz/assets/images/ipalibrary.png"
],
"subtitle": "Turn your photos into captivating animations and cartoons",
"absoluteVersion": "1.4.6",
"appID": "",
"category": "Tweaked Apps",
"versions": [
{
"version": "1.4.6",
"date": "2023-05-24",
"downloadURL": "https://ia800508.us.archive.org/15/items/animatix-1.4.6-le-ti/Animatix_1.4.6_LeTi.ipa",
"localizedDescription": "1.4.6",
"size": 150000000,
"absoluteVersion": "1.4.6"
}
]
},
{
"name": "Babbel++",
"bundleIdentifier": "com.babbel.babbelMulti",
"developerName": "CodeVN",
"version": "21.22.0",
"versionDate": "2023-01-04",
"versionDescription": "",
"downloadURL": "https://ia601602.us.archive.org/33/items/babbel-21.22.0-le-ti/Babbel%2B%2B_21.22.0_LeTi.ipa",
"localizedDescription": "Millions of people are learning languages with Babbel \u2014 the language app built by language experts. Why Babbel? Our short, interactive lessons rethink old-school language education to get you speaking a new language with confidence!\n\nBABBEL WORKS:\n\n\u2022 Efficacy backed by researchers at Yale University:\n\n100% of study participants improved their oral proficiency in 3 months*\n\n\u2022 After 10 hours with Babbel, Michigan State University researchers found:\n\n96% of learners saw better test scores on grammar and vocabulary\n\n73% of study participants became better speakers**\n\n====================\n\nOur language experts build every language course tailored to your native language. This way you learn Spanish and 13 more languages quickly and effectively.\n\nTRY BABBEL \u2013 DOWNLOAD THE APP AND TAKE A FREE LESSON\n\n====================\n\nLEARN 14 LANGUAGES:\n\nIt\u2019s not just a Spanish learning app! Learn French, Italian, German, Portuguese, Russian, Polish, Turkish, Norwegian, Danish, Swedish, Dutch, Indonesian, and English.\n\n====================\n\nWhy are Americans learning languages with the Babbel language app?\n\nSHORT, EFFECTIVE LESSONS\n\nEasy to fit language lessons into your day\n\nLESSONS FOR EVERY SITUATION\n\nFor travel, work, and more\n\nLISTEN, SPEAK, WRITE\n\nWell-rounded language practice\n\nPERFECT YOUR PRONUNCIATION\n\nSophisticated speech-recognition technology\n\nRETAIN WHAT YOU LEARN\n\nReview feature that\u2019s optimized to help you retain knowledge\n\nLEARN GRAMMAR IN CONTEXT\n\nUseful tips & tricks as you learn\n\nOVER 5,000 LANGUAGE COURSES\n\nLearn Spanish and 13 other languages with in-depth content, including more than 60,000 language lessons",
"iconURL": "https://i0.wp.com/ipacrack.com/wp-content/uploads/2023/01/Babbel.jpeg",
"tintColor": "663399",
"size": 5950900,
"screenshotURLs": [
"https://ipa.cypwn.xyz/assets/images/ipalibrary.png"
],
"subtitle": "interactive lessons rethink old-school language education",
"absoluteVersion": "21.22.0",
"appID": "",
"category": "Tweaked Apps",
"versions": [
{
"version": "21.22.0",
"date": "2023-01-04",
"downloadURL": "https://ia601602.us.archive.org/33/items/babbel-21.22.0-le-ti/Babbel%2B%2B_21.22.0_LeTi.ipa",
"localizedDescription": "21.22.0",
"size": 5950900,
"absoluteVersion": "21.22.0"
}
]
},
{
"name": "Meitu++",
"bundleIdentifier": "com.meitu.mtxx",
"developerName": "CodeVN",
"version": "9.9.30",
"versionDate": "2023-01-01",
"versionDescription": "",
"downloadURL": "https://ia802702.us.archive.org/9/items/meitu-9.9.30-le-ti/Meitu%2B%2B_9.9.30_LeTi.ipa",
"localizedDescription": "Meitu is the All-in-one photo and video free editor on mobile, which gives you everything you need to create awesome edits. Meitu AI Art generates creative anime style photos with one tap.\n\n \n\nMeitu Features:\n\n\u3010Photo Editor\u3011\n\nMake your photos stunning and sensational! Whatever your beauty preference, do it all with Meitu!\n\n\u2022 200+ Filters: No more dull photos! Animate and liven them up with 200+ original and unique effects!\n\n\u2022 Unique Art Photo Effects: Cutting-edge tech that automatically turns your portraits into stunning illustrations!\n\n\u2022 Instant Beautification: Select the beautification level of your choice and get flawless skin, sparkly eyes, a straighter nose, whiter teeth, etc. in just one tap!\n\n\u2022 Edit Pictures\n\n\u2013 Effects: Add filters to your photos and create a different mood\n\n\u2013 Mosaic: Cover anything that you want to hide\n\n\u2013 Magic Brush: Doodle over your pics with different brush options\n\n\u2013 Add-ons: Customize your pictures by adding frames, text, stickers\n\n\u2013 Collage: Combine several photos into one collage using in-app templates, text, and layout options\n\n\u2022 Retouch Body Features\n\n\u2013 Skin: Smooth, firm, tone and adjust the hue of your skin exactly the way you like!\n\n\u2013 Blemishes: Get rid of any unwanted acne, scars, spots, etc.\n\n\u2013 Eyes: Brighten and enlarge your eyes, and completely erase dark circles\n\n\u2013 Body Shape: Be curvier, slimmer, more muscular, shorter, or taller.\n\n\u2022 Artificial Intelligence\n\nWith groundbreaking AI technology, Meitu auto detects your facial features and is able to add cute motion stickers or hand-drawn effects to your face while taking selfies.\n\n \n\n\u3010Video Editor\u3011\n\n\u2022 Edit Videos: Create and edit your video in easy ways. Make your Vlogs and Tiktok videos in a high-end level with filters, special fonts, stickers and music.\n\n\u2022 Portrait Retouch: Portrait can be adjusted by a variety of effects, like makeup, face, teeth adjustment.",
"iconURL": "https://i0.wp.com/ipacrack.com/wp-content/uploads/2022/12/Meitu.png",
"tintColor": "663399",
"size": 5950900,
"screenshotURLs": [
"https://ipa.cypwn.xyz/assets/images/ipalibrary.png"
],
"subtitle": "All-in-one photo and video free + AI art gen",
"absoluteVersion": "9.9.30",
"appID": "",
"category": "AI",
"versions": [
{
"version": "9.9.30",
"date": "2023-01-01",
"downloadURL": "https://ia802702.us.archive.org/9/items/meitu-9.9.30-le-ti/Meitu%2B%2B_9.9.30_LeTi.ipa",
"localizedDescription": "9.9.30",
"size": 5950900,
"absoluteVersion": "9.9.30"
}
]
},
{
"name": "Doppi",
"bundleIdentifier": "com.ondalabs.doppi",
"developerName": "CodeVN",
"version": "4.3.12",
"versionDate": "2023-01-01",
"versionDescription": "",
"downloadURL": "https://ia804708.us.archive.org/21/items/aiart-generator-1.1.0-le-ti/Doppi_4.3.12_LeTi.ipa",
"localizedDescription": "Music files aren\u2019t dead. Whether you\u2019ve built up your collection for decades or just got sent an album full of b-sides of your favorite artist, you need a place to carry your own music.\n\n \n\nLet Doppi be that place. Doppi (pronounced doh-pie) raises the bar in iOS app design in an essentially simple music player, built just for your local music files.\n\n \n\nEnjoy your music with:\n\n\u2022 A beautifully simple interface\n\n\u2022 Fluid gesture-based navigation\n\n\u2022 Always-reachable search and playback controls\n\nSupports MP3, M4A, FLAC, and more. Browse and play music:\n\n\u2022 Received via AirDrop\n\n\u2022 Copied from the Files app\n\n\u2022 Shared from other apps (selecting \u201cCopy to Doppi\u201d)\n\n\u2022 Added to the Doppi folder in Files or via iTunes File Sharing\n\n\u2022 Synced from iTunes\n\n\u2022 Downloaded from Cloud Music Library\n\n \n\n\u2014\u2014\u2014\u2014\n\nImportant:\n\nDoppi does not support Apple Music offline downloads outside of Cloud Music Library.\n\n\u2014\u2014\u2014\u2014\n\n \n\nWith Doppi:\n\nBig, Beautiful Artwork\n\nYour music\u2019s artwork takes center stage on the Now Playing screen and throughout your library.\n\nMake It Your Own\n\nChoose from 6 highlight colors and 32 beautiful icons, switch between 4 light and dark themes, rearrange your library tabs, and more\u2014all from Preferences.\n\nSearch From Anywhere\n\nPull down from anywhere in your library to invoke Search. Hit Return to instantly trigger the top result.\n\nPlay and Add Quickly\n\nPlay an album or artist right from the library using their embedded Play buttons, and add songs to Up Next using the Add (+) buttons.\n\nMark Your Likes\n\nTap the heart on the player (or choose Like from a menu) to Like tracks. Liked music appears in the Liked Songs playlist, Liked Albums on Search, and is more likely to play in Shuffle All.\n\nMake Playlists\n\nCreate all-new playlists, duplicate them, or copy them from Apple Music. Tap and hold on anything to add those songs to a list.\n\nAdd Lyrics\n\nSearch for lyrics on the web right from the app and add them to your songs. Enjoy them on Doppi\u2019s beautiful player interface.\n\nManage Your Music\n\nEverything in your library has useful actions \u2014 just tap and hold to reveal a menu. For example, if you\u2019re not feeling some of your music, you can exclude it from Shuffle All, hide it from your library, or delete it (if it\u2019s from imported files).\n\nLess, But Better\n\nEvery screen in Doppi has been carefully designed with clean typography, pleasing contrast, and elegant motion. Enjoy your music without unnecessary distractions.\n\nEasily Readable\n\nDoppi fully supports Dynamic Type and includes high contrast themes, so your eyes won\u2019t get in the way of your ears.\n\nContinue Album\n\nEver shuffled your music, found a song you loved, and wished you could keep playing the album without stopping the song? Doppi can make it happen \u2014 just navigate to the album and press Play.\n\nGive your music the lovely home it deserves.",
"iconURL": "https://i0.wp.com/ipacrack.com/wp-content/uploads/2022/12/Doppi.png",
"tintColor": "663399",
"size": 5950900,
"screenshotURLs": [
"https://ipa.cypwn.xyz/assets/images/ipalibrary.png"
],
"subtitle": "Doppi",
"absoluteVersion": "4.3.12",
"appID": "",
"category": "Tweaked Apps",
"versions": [
{
"version": "4.3.12",
"date": "2023-01-01",
"downloadURL": "https://ia804708.us.archive.org/21/items/aiart-generator-1.1.0-le-ti/Doppi_4.3.12_LeTi.ipa",
"localizedDescription": "4.3.12",
"size": 5950900,
"absoluteVersion": "4.3.12"
}
]
},
{
"name": "PlayerXtreme++",
"bundleIdentifier": "mca.mcplayer",
"developerName": "CodeVN",
"version": "1.4.19",
"versionDate": "2022-11-22",
"versionDescription": "",
"downloadURL": "https://ia801408.us.archive.org/16/items/tempo-4.26.0-le-ti/PlayerXtreme%2B%2B_1.4.19_LeTi.ipa",
"localizedDescription": "PlayerXtreme Video & Media Player is a multi-functional, high-performance & cross-platform application which enables you to enjoy your content in HD quality. Watch movies, listen to music and stream your favorite content with just a click of a button. Download now and enjoy the perfect HD video player that we have to offer.\n\n\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014-\n\nFeatures:\n\nPlay files that are in your gallery with this media player. Our Media Player supports a vast number of formats e.g. MP4, MOV, MKV, WMV to name a few, and many others. Delivers an unrivaled 4K 1080p playback which makes it the best choice out there. Simple User Interface and even better User Experience. All in one media player. Play files that are on your device, on your Scan QR code of the URL that you want to play. Then sit back, relax and Enjoy!\n\n\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014-\n\nSupported Formats:\n\nVideo: m3u8, mp4, WebM, 3gpp, 3gp, 3g2, asf, avi, DV, DAT, Flv, gxf, m2p, m2ts, m2v, m4v, Mkv, Moov, mov, mpe, mpeg1, mpeg2, mpeg4, mpg, MPV, mt2s, mts, mxf, ogm, ogv, ps, qt, rm, Rmvb, ts, VOB, wm, WMV, DivX, iso, SWF, wtvMusic: mp3, m4a, ra, ac3, wav, FLAC, AIF, WMA, AIFF",
"iconURL": "https://i0.wp.com/ipacrack.com/wp-content/uploads/2022/11/PlayerXtreme.jpeg",
"tintColor": "663399",
"size": 5950900,
"screenshotURLs": [
"https://ipa.cypwn.xyz/assets/images/ipalibrary.png"
],
"subtitle": "PlayerXtreme",
"absoluteVersion": "1.4.19",
"appID": "",
"category": "Tweaked Apps",
"versions": [
{
"version": "1.4.19",
"date": "2022-11-22",
"downloadURL": "https://ia801408.us.archive.org/16/items/tempo-4.26.0-le-ti/PlayerXtreme%2B%2B_1.4.19_LeTi.ipa",
"localizedDescription": "1.4.19",
"size": 5950900,
"absoluteVersion": "1.4.19"
}
]
},
{
"name": "Memrise++",
"bundleIdentifier": "com.memrise.ios.memrisecompanion",
"developerName": "CodeVN",
"version": "2021.5.24",
"versionDate": "2022-11-20",
"versionDescription": "",
"downloadURL": "https://ia601502.us.archive.org/17/items/memrise-3.2.34-le-ti/Memrise%2B%2B_2021.5.24_LeTi.ipa",
"localizedDescription": "Learning a language isn\u2019t hard. Short Lessons. Real-life phrases. Get everything you need to go from learning to speaking, fast, with Memrise.\n\nJoin over 60 million people and start learning a language with Memrise, the easiest way to learn a language\n\n\u2018It\u2019s among the most popular language apps with its user-friendly interface and helpful video clips with the spoken dialects in action to help you master real-world scenarios.\u2019 \u2013 All Tech Buzz\n\nWe get to the heart of learning a language: showing you how native speakers speak and teaching you how to do it yourself. Video clips of real people in local streets, coffee shops, karaoke bars and at work help you understand and speak languages the way they\u2019re actually used in real-life situations.\n\n \n\n====================\n\nWHAT LANGUAGES CAN I LEARN?\n\nYou can learn Spanish (European Spanish and Mexican Spanish), French, German, Italian, Japanese (Romaji and Kanji), Korean, Chinese, Portuguese (European Portuguese and Brazilian Portuguese), Russian, Dutch, Swedish, Norwegian, Polish, Turkish, Danish, Icelandic, Mongolian, Slovenian, Yoruba and English (British English and American English).\n\n \n\n====================\n\nDOWNLOAD THE APP TO:\n\n1) Learn all the language essentials. Useful vocabulary and phrases for real-life situations: from ordering a coffee to making small chat with friends in new places.\n\n2) Get used to language as the locals speak it. With over 50,000 audio and video clips, you\u2019ll get to grips with a variety of sounds, tone, rhythm, body language, gestures, and more.\n\n3) Ease into speaking another language confidently. A safe space to practice without feeling fearful or embarrassed of speaking in a new language out loud.\n\n \n\nLearn French for travel\n\nOur French courses have all the words and phrases you\u2019ll need to get you feeling like a local.\n\nLearn Spanish for work\n\nWith native speaker video clips to help you understand and speak Spanish to your colleagues, faster.\n\nLearn Japanese for fun\n\nSo you can enjoy the Japanese culture and country without translation apps or subtitles.\n\nWhatever your language learning motivation is, Memrise gets you language ready for the real world \u2013 no matter if you\u2019re a complete beginner or looking to refresh your language knowledge.\n\nA team of language specialists and native speakers working alongside expert engineers design and build your lessons to easily help you go from learning to speaking, fast. Feeling excited? You can learn Spanish, English, French, Italian, German, Portuguese, Russian, Japanese, Korean, Chinese (and more) and learn to speak as the locals do! Try any of our 20+ language courses.",
"iconURL": "https://i0.wp.com/ipacrack.com/wp-content/uploads/2022/11/Memrise.jpeg",
"tintColor": "663399",
"size": 5950900,
"screenshotURLs": [
"https://ipa.cypwn.xyz/assets/images/ipalibrary.png"
],
"subtitle": "Memrise",
"absoluteVersion": "2021.5.24",
"appID": "",
"category": "Tweaked Apps",
"versions": [
{
"version": "2021.5.24",
"date": "2022-11-20",
"downloadURL": "https://ia601502.us.archive.org/17/items/memrise-3.2.34-le-ti/Memrise%2B%2B_2021.5.24_LeTi.ipa",
"localizedDescription": "2021.5.24",
"size": 5950900,
"absoluteVersion": "2021.5.24"
}
]
},
{
"name": "Facetune++",
"bundleIdentifier": "com.lightricks.Facetune2",
"developerName": "CodeVN",
"version": "3.47.2",
"versionDate": "2024-04-20",
"versionDescription": "",
"downloadURL": "https://ia600203.us.archive.org/3/items/facetune-3.47.2-le-ti/Facetune%2B%2B_3.47.2_LeTi.ipa",
"localizedDescription": "Introducing new AI features to create stunning visuals to add to your photos or selfies. Let your imagination run wild & express yourself like never before.\n\n \n\nEasily edit photos and videos with the world\u2019s premier editor! Enhance your entire photo at once using one-tap editing or express your unique vision with precision using manual editing to get the look and feel you want. Put your poise and personality into every post \u2013 show the world what makes you one of a kind!\n\n \n\nCELEBRATE YOUR SELFIE\n\n-Cover blemishes and let the real you shine through\n\n-Apply makeup to step up the sass\n\n-Refresh tired eyes or explore new eye colors\n\n-Add highlights or darken hair\n\n \n\nAI ART\n\n-New AI image generator for stunning photo backgrounds\n\n-Type what you want to see & watch it appear with advanced AI tools\n\n-Overlay your AI creations onto your selfie background\n\n-Take your selfies to the next level with easy-to-use digital art\n\n-Bring your imagination to life \u2013 apply AI generated art to your background or to create a new clothing pattern!\n\n \n\nRETOUCH IN A SNAP\n\n-Thin or thicken eyebrows, lips, or hair with Reshape\n\n-Whiten teeth, clothing, and sneakers\n\n-Airbrush a tan or smooth out skin\n\n \n\nADD A DASH OF DAZZLE\n\n-Photo filters to match your personal aesthetic\n\n-Scroll stopping effects for every occasion\n\n \n\nGRAB THE SPOTLIGHT\n\n-Dial in lighting to keep the attention on you\n\n-Blur backgrounds or replace them with a new one\n\n-Ring light eyes for a studio look\n\n-Remove distractions in a swipe\n\n \n\nSELFIE VIDEOS ON POINT\n\n\u2013 Enhance videos with a hair and face retouch editor\n\n\u2013 Be bold with filters and effects\n\n\u2013 Denoise to tune out background sound\n\n \n\nHighlight your assets and unleash your creativity! Facetune is your all-in-one editor for unforgettable results. Easily whiten teeth, retouch blemishes and acne, contour faces, blur backgrounds, add effects, and so much more \u2013 download today and let your natural beauty and glamour glow in every photo, selfie, and video!",
"iconURL": "https://i0.wp.com/ipacrack.com/wp-content/uploads/2022/11/Facetune.jpeg",
"tintColor": "663399",
"size": 5950900,
"screenshotURLs": [
"https://ipa.cypwn.xyz/assets/images/ipalibrary.png"
],
"subtitle": "Facetune",
"absoluteVersion": "3.47.2",
"appID": "",
"category": "Tweaked Apps",
"versions": [
{
"version": "3.47.2",
"date": "2024-04-20",
"downloadURL": "https://ia600203.us.archive.org/3/items/facetune-3.47.2-le-ti/Facetune%2B%2B_3.47.2_LeTi.ipa",
"localizedDescription": "3.47.2",
"size": 5950900,
"absoluteVersion": "3.47.2"
}
]
},
{
"name": "Picsew++",
"bundleIdentifier": "com.sugarmo.ScrollClip",
"developerName": "CodeVN",
"version": "3.9.4",
"versionDate": "2022-11-16",
"versionDescription": "",
"downloadURL": "https://ia801506.us.archive.org/19/items/2.1-le-ti/Picsew%2B%2B_3.9.4_LeTi.ipa",
"localizedDescription": "Picsew can automatically merge multiple screenshots to a long screenshot, and we call this long screenshot \u201cScrollshot\u201d.\n\n \n\n# Features\n\n \n\n\u2013 Create scrollshot directly through screen recording.\n\n\u2013 Advanced Screenshot-Merging-Algorithm among the same kind of products.\n\n\u2013 Stitch manually if you want to control more, both vertical and horizontal stitching are supported.\n\n\u2013 Select large number of photos, up to 300.\n\n\u2013 High resolution photo stitching and output.\n\n\u2013 Export as PDF.\n\n\u2013 Export as slices.\n\n\u2013 Cleaning status bar.\n\n\u2013 Annotation, adding watermark, redaction and mockup.\n\n\u2013 Minimal interface design, no advertising.\n\n\u2013 Universal application, compatible with iPhone and iPad.\n\n\u2013 Compatible with VoiceOver.\n\n \n\n# Extensions\n\n \n\n\u2013 Scrollshot Recording:\n\nCreate scrollshot without taking screenshots.\n\n\u2013 Web Snapshot:\n\nMake web site full page screenshot right in Safari app.\n\n\u2013 Recent Scrollshot:\n\nMake scrollshot without opening app.\n\n\u2013 Create Scrollshot:\n\nMake scrollshot right in Photos app.\n\n \n\nPicsew can be automatically stitched:\n\n \n\n\u2013 Conversation\n\n\u2013 To-Do list\n\n\u2013 Tweet list\n\n\u2013 Comment list\n\n\u2013 Long article\n\n\u2013 Long web page\n\n\u2013 Other contents that can be scrolled",
"iconURL": "https://i0.wp.com/ipacrack.com/wp-content/uploads/2022/11/Picsew.jpeg",
"tintColor": "663399",
"size": 5950900,
"screenshotURLs": [
"https://ipa.cypwn.xyz/assets/images/ipalibrary.png"
],
"subtitle": "Picsew",
"absoluteVersion": "3.9.4",
"appID": "",
"category": "Tweaked Apps",
"versions": [
{
"version": "3.9.4",
"date": "2022-11-16",
"downloadURL": "https://ia801506.us.archive.org/19/items/2.1-le-ti/Picsew%2B%2B_3.9.4_LeTi.ipa",
"localizedDescription": "3.9.4",
"size": 5950900,
"absoluteVersion": "3.9.4"
}
]
},
{
"name": "PrettyUp++",
"bundleIdentifier": "com.floatcamellia.prettyup",
"developerName": "CodeVN",
"version": "6.8.1",
"versionDate": "2022-11-17",
"versionDescription": "",
"downloadURL": "https://ia800505.us.archive.org/15/items/pretty-up-6.8.1-le-ti/PrettyUp%2B%2B_6.8.1_LeTi.ipa",
"localizedDescription": "PrettyUp is a fantastic face and body editor for videos and photos. We can help you retouch your sweet selfie video and selfie like face retouch, smooth skin and reshape body. Come and try this face beauty camera and video body editor to edit perfect selfie videos, make vlog and edit live photo video, supporting video and picture editing at the same time. Are you still annoyed by shooting videos or photos without showing your best or the problem of face and body get distorted by camera? Prettyup will work it out to restore your beauty and save your precious moments.\n\n \n\nVideo Body Editor\n\n-Reshape body: slim and skinny. Powerful retouch tools and body changer prepared for you.\n\n-Slim your waist and easy to get thin waist and perfect figure. Easy to edit body shape.\n\n-Body enhancer: workout longer and awesome legs. Make you tall and get model legs in videos.\n\n-Make your body slimmer and help you fix body in videos. Excellent body edit app and wonderful portrait video editor for you.\n\n \n\nFace Retouch\n\n-Face Video editor helps you get pretty face and brighten video selfie. Easy to edit portrait video.\n\n-Reshape face in videos naturally: easy to make face thinner and help you get strong jawline.\n\n-Face shrink: make your face slimmer. Get your video with our beauty video converter. Edit your face shape easily.\n\n-Perfect nose editor and eyebrow editor for portrait camera. Big eyes for facelift to make you beautiful.\n\n-Lips plumper designed for you. Multiple face filters are waiting for you to try in this magic selfie editor.\n\n \n\nBeauty Face Camera\n\n-Face fixer helps you fix all the facial problems: remove acnes and smooth face. The smoothing app is also a great face cleaner to get glowing and smooth skin in videos and photo.\n\n-Teeth whitener and remove blemishes bright your aesthetic video. Younger face is easy to get. Perfect smile editor for you to try.\n\n-Face enhancer: remove wrinkles, eyebag and nasolabial to get face smoother, bright your makeup and even your skin tone on foto and live photo video.\n\n \n\nVideo Filter Editor\n\n-Multiple face filters prepared for you. Popular beauty filter brighten your videos. 60+ styles of face filters: Selfie, Ins, Retro, Artistic\u2026 More selfie filters and effects are coming.\n\n-Useful adjust tools to enhance your videos. Enjoy advanced editing tools to make your videos cool.\n\n \n\nExperience the wonderful video enhancer and face app editor now. PrettyUp helps you retouch selfie videos and vlog.\n\nAlthough life is full of trivialities and troubles, don\u2019t hesitate to create best memories with PrettyUp and embrace your ideal life. Remember, you were born to be beautiful. We do not need to live up to anyone\u2019s ideal since beauty is something that cannot be standardized. All body shapes are perfect.",
"iconURL": "https://i0.wp.com/ipacrack.com/wp-content/uploads/2022/11/PrettyUp.jpeg",
"tintColor": "663399",
"size": 5950900,
"screenshotURLs": [
"https://ipa.cypwn.xyz/assets/images/ipalibrary.png"
],
"subtitle": "PrettyUp",
"absoluteVersion": "6.8.1",
"appID": "",
"category": "Tweaked Apps",
"versions": [
{
"version": "6.8.1",
"date": "2022-11-17",
"downloadURL": "https://ia800505.us.archive.org/15/items/pretty-up-6.8.1-le-ti/PrettyUp%2B%2B_6.8.1_LeTi.ipa",
"localizedDescription": "6.8.1",
"size": 5950900,
"absoluteVersion": "6.8.1"
}
]
},
{
"name": "Elevate++",
"bundleIdentifier": "com.elevateapp.elevate",
"developerName": "CodeVN",
"version": "5.139.0",
"versionDate": "2024-06-14",
"versionDescription": "",
"downloadURL": "https://ia600308.us.archive.org/21/items/elevate-5.139.0-le-ti/Elevate%2B%2B_5.139.0_LeTi.ipa",
"localizedDescription": "Elevate is a brain training program designed to improve your mind\u2019s focus, memory, speaking abilities, processing speed, math skills, and more. Each person is provided with a personalized training program that adjusts over time to maximize results.\n\n \n\nThe more you train with Elevate, the more you\u2019ll improve critical cognitive skills that are proven to boost productivity, earning power, and self-confidence. 90%+ report improved vocabulary, math skills, and overall mental sharpness when they frequently use Elevate.\nFEATURES\n\n \n\n\u2022 40+ Brain Training Games: Improve your critical cognitive skills like focus, memory, processing, math, precision, and comprehension with 40+ brain training games.\n\n\u2022 Performance Tracking: Measure your performance against yourself and others. Weekly reports highlight your key accomplishments and opportunities.\n\n\u2022 Personalized Workouts: Customize your daily training focus and choose between 3 and 5 games. Get personalized daily workouts that include the skills you need most.\n\n\u2022 Adaptive Progression: Train your brain with adaptive difficulty progression that ensures your experience is challenging.\n\n\u2022 Workout Calendar: Track your streaks and stay motivated with Elevate\u2019s workout calendar.\n\n\u2022 Elevate Dash on Apple Watch: Play 4 additional mini-games and review your performance on your Apple Watch with Elevate Dash.\n\n\u2022 And more!\n\n \n\nWHY YOU NEED ELEVATE\n\n \n\n\u2022 Express yourself more effectively in writing. Write with clarity, persuasiveness, and concision.\n\n\u2022 Improve your spelling and punctuation. Avoid common writing pitfalls.\n\n\u2022 Become a better reader. Read everyday materials faster and with greater understanding.\n\n\u2022 Expand your vocabulary.\n\n\u2022 Quickly and easily solve everyday math problems. Get better at comparing prices, splitting bills, and calculating discounts and markups.\n\n\u2022 Speak more effectively. Become more articulate and better at communicating tone and meaning.",
"iconURL": "https://i0.wp.com/ipacrack.com/wp-content/uploads/2022/10/Elevate.jpeg",
"tintColor": "663399",
"size": 5950900,
"screenshotURLs": [
"https://ipa.cypwn.xyz/assets/images/ipalibrary.png"
],
"subtitle": "Elevate",
"absoluteVersion": "5.139.0",
"appID": "",
"category": "Tweaked Apps",
"versions": [
{
"version": "5.139.0",
"date": "2024-06-14",
"downloadURL": "https://ia600308.us.archive.org/21/items/elevate-5.139.0-le-ti/Elevate%2B%2B_5.139.0_LeTi.ipa",
"localizedDescription": "5.139.0",
"size": 5950900,
"absoluteVersion": "5.139.0"
}
]
},
{
"name": "Video Grabber",
"bundleIdentifier": "com.ls.VideoGrabber",
"developerName": "Unknown",
"version": "1.0.8",
"versionDate": "2022-09-27",
"versionDescription": "",
"downloadURL": "https://getfile.dokpub.com/yandex/get/https://disk.yandex.ru/d/TWrBhfz8BGIvPA",
"localizedDescription": "Video Grabber application grabs direct links to videos played from any website. Simply use the web browser inside the app to open any video and you will get a direct link to it.\n\n \n\nYou can use Video Grabber on you iPhone together with Video Grabber app for Apple TV. Launch Video Grabber application on both iPhone and Apple TV and every video that you play from any website on your iPhone will also automatically play on your Apple TV. After starting the video on Apple TV you can close the iPhone application or even turn off your phone and still watch your video on Apple TV.",
"iconURL": "https://i0.wp.com/ipacrack.com/wp-content/uploads/2022/09/Video-Grabber.png",
"tintColor": "663399",
"size": 5950900,
"screenshotURLs": [
"https://ipa.cypwn.xyz/assets/images/ipalibrary.png"
],
"subtitle": "Video Grabber",
"absoluteVersion": "1.0.8",
"appID": "",
"category": "Tweaked Apps",
"versions": [
{
"version": "1.0.8",
"date": "2022-09-27",
"downloadURL": "https://getfile.dokpub.com/yandex/get/https://disk.yandex.ru/d/TWrBhfz8BGIvPA",
"localizedDescription": "1.0.8",
"size": 5950900,
"absoluteVersion": "1.0.8"
}
]
},
{
"name": "EnhanceFox++",
"bundleIdentifier": "com.risingcabbage.enhancefox",
"developerName": "CodeVN",
"version": "7.0",
"versionDate": "2024-02-13",
"versionDescription": "",
"downloadURL": "https://ia601300.us.archive.org/22/items/photo-enhancer-7.0-le-ti/Photo%20Enhancer%2B%2B_7.0_LeTi.ipa",
"localizedDescription": "EnhanceFox is the best real-time photo enhancement application to clear picture that is blurry and enhance to high resolution. We take full advantage of advanced AI generation technology to help you easily repair blurred photos to make them clear. In addition, EnhanceFox is also an AI-powered colorizer, which can colorize your black and white photos to make them look better. Last but not least, EnhanceFox is a video enhancer to better quality that can enhance and fix blurry video to HD.\n\nDownload and enjoy the convenience of cutting-edge AI technology!\n\n \n\nAmazing features:\n\n\u2022 Repair blurred photos to improve photo clarity and make portrait photos better.\n\n\u2022 Enhance video quality to better resolution.\n\n\u2022 Convert FPS: You can make your videos smoother.\n\n\u2022 Enhance photo that turns photos into cartoon effect.\n\n\u2022 AI photo smoother that improving the smoothness of photo.\n\n\u2022 Restore realistic colors for your black and white photo\n\n\u2022 Descratch photos, remove scratches from photos.\n\n\u2022 Animate photos, add eye and mouth movements to make photos talk or sing. Animate face with interesting action. Come and make your face animation.\n\n\u2022 The best face animator to animate faces, create amazing talking pictures!\n\n\u2022 AI photo editor for portraits and photo retouching to give you a flawless face\n\n\u2022 Retouch selfies in one tap to remove blemishes and smooth out skins\n\n\u2022 One-click to color photos, add filters and automatically correct photos\n\n\u2022 Enhance old photos in memory to HD\n\n\u2022 Enhance photos taken with your old camera or mobile phone to make them the same as taken by the latest camera or mobile phone\n\n\u2022 AI recognition to blur the background, highlight the high-definition image of the character\n\n\u2022 Rescue compressed, damaged or yellowed old photos\n\n\u2022 Animate old photos free with algorithms of AI (Artificial Intelligence).\n\n\u2022 Retouch photo by marking any unwanted content and have it removed from photos with one touch\n\n\u2022 Video restoration to remini video and make video clearer\n\n \n\nNew Features1\uff1a\n\nNot only make photos clearer, but we have also added a new function-video enhancer. You can select a blurry or low-resolution portrait or internet video, and we can enhance video resolution to better quality. EnhanceFox is not only an AI photo enhancer but also an AI video enhancer.\n\nNew features2\uff1a\n\n\u2022 Support photo scanning to convert your photos into digital photos for free.\n\n\u2022 Storing the scanned photos in the album. Then you can Enhance photos, Colorize B&W photos and Animate photos.\n\nNew features3\uff1a\n\nWant to get rsmb and time cut\u2019s motion blur and slow motion effect? Come to try our new feature: Convert FPS! By using Optical flow method to convert velocity, you can also make your video smoother!",
"iconURL": "https://i0.wp.com/ipacrack.com/wp-content/uploads/2022/08/EnhanceFox.png",
"tintColor": "663399",
"size": 5950900,
"screenshotURLs": [
"https://ipa.cypwn.xyz/assets/images/ipalibrary.png"
],
"subtitle": "EnhanceFox++",
"absoluteVersion": "7.0",
"appID": "",
"category": "Tweaked Apps",
"versions": [
{
"version": "7.0",
"date": "2024-02-13",
"downloadURL": "https://ia601300.us.archive.org/22/items/photo-enhancer-7.0-le-ti/Photo%20Enhancer%2B%2B_7.0_LeTi.ipa",
"localizedDescription": "7.0",
"size": 5950900,
"absoluteVersion": "7.0"
}
]
},
{
"name": "GBoxTS",
"bundleIdentifier": "com.ncs.gbox",
"developerName": "GBOXdev",
"version": "4.6.1",
"versionDate": "2024-02-07",
"versionDescription": "",
"downloadURL": "https://ts.gbox.run/TS2/GBoxTS_v5.6.1.ipa",
"localizedDescription": "GBox for TrollStore. If you jailbreak your iOS device, you won't have to worry about app revokes or signing IPA files. However, if you prefer a non-jailbroken environment, you can use GBox for iOS, which is a reliable on-device re-sign tool for iOS. This app allows you to install IPA files without needing a PC, making it a convenient option for users who want to sideload apps. The most recent GBox IPA update brings support for iOS 17. GBox (GBox Run) is a powerful on-device IPA signing tool that empowers iOS users to sideload jailbreak tools, apps, games, console emulators, and tweaked apps on their iPhone or iPad, without requiring a computer. With GBox Run for iOS, you can easily import your own signing certificates or purchase globally available ones to sign and install IPA files.\n\nThis tool works on both jailbroken and non-jailbroken devices. GBox iOS is an alternative to Cydia Impactor that works directly on your iPhone, supporting iOS versions 10 through the latest iOS 17 release. Once GBox IPA for iOS is installed, the app will be available from your Home Screen, allowing you to install almost all IPA files, including those over 500 MB in size.\n\nGBox iOS eliminates the need to use a computer, making the IPA installation process more convenient and streamlined. Moreover, GBox can import your own IPA files from any app, or access sources with links to popular jailbreak tools like XinaA15, unc0ver, Odyssey, and various console emulators such as Delta, RetroArch, Happy Chick, DolphiniOS, PPSSPP, and iNDS.\n\nTwo iPhone screens showing the GBox IPA installer app interface.\n\nThis feature provides an efficient way to manage and access your IPA files and jailbreak tools all in one location, eliminating the need to navigate through multiple sources or applications. The app also includes a list of popular iOS games, and all files are available for self-signing. However, it should be noted that without a purchased certificate, you won't be able to install IPA files.\n\nGBox iOS enables users to easily create their own sources, with download links to popular IPA files for quick and easy access. The app also includes a download manager that allows you to quickly download any IPA packages by providing a URL to the file and a web server useful to transfer IPA files between devices. GBox also works on iOS 15 XinaA15 and Palera1n jailbreaks.\n\nAdditionally, GBox supports Anti-Revoke tweaks, which allows you to install apps and games by disabling certificate revokes check on your jailbroken device, providing a secure experience.\n\nBy default, GBox iOS installs a globally available enterprise certificate to sign IPA files. However, as these certificates are commonly used by pirated third-party App Stores, they are often revoked by Apple, making them impossible to use. Typically, these free certificates only work for a few days. Purchased certificates can last for a couple of weeks or months.\n\nTwo iPhone screens showing Gbox IPA installation options and app Settings pane.\n\nGBox uses a p12 certificate and mobileprovision file to install IPA files on your iPhone. To ensure that the certificate is valid, GBox includes a certification management system, which is available through the Settings pane. To access this feature, you must install the UDID profile.\n\nFrom the Cert Management page, you can view all installed certificates, check their current status, delete and export certificates, purchase working private certificates, and import and use your own certificates to sign and install IPAs. This feature allows you to manage and maintain your certificates, ensuring that you can install and use IPA files with minimal interruption.\n\nRecently, GBox has been integrated with Appdb.to, the largest and oldest IPA database. From now on, you can install apps with GBox certificates easily. Simply visit the website configuration page and select \u201cImport from GBox\u201d. GBox TS is now available, offering the ability to install IPA files permanently without revokes on iOS 14 through iOS 15.4.1. This version of GBox can be easily installed on your iPhone directly from Safari's mobile browser. With this feature, you can enjoy your favorite apps and tweaks without worrying about them getting revoked.",
"iconURL": "https://gbox.run/Public/resources/icon256.png",
"tintColor": "663399",
"size": 5950900,
"screenshotURLs": [
"https://ipa.cypwn.xyz/assets/images/ipalibrary.png"
],
"subtitle": "an apps' store and signer",
"absoluteVersion": "4.6.1",
"appID": "",
"category": "Stores",
"versions": [
{
"version": "4.6.1",
"date": "2024-02-07",
"downloadURL": "https://ts.gbox.run/TS2/GBoxTS_v5.6.1.ipa",
"localizedDescription": "4.6.1",
"size": 7122106,
"absoluteVersion": "4.6.1"
}
]
},
{
"name": "Misaka",
"bundleIdentifier": "com.straight-tamago.misakaRS",
"developerName": "Rin",
"version": "8.2.4",
"versionDate": "2024-01-19",
"versionDescription": "Supported iOS 15.7.2 - 15.8.1",
"downloadURL": "https://github.com/straight-tamago/misaka/releases/download/8.2.4/misaka-v8.2.4.ipa",
"localizedDescription": "The purpose of Misaka is to give iPhone users the ability to customise their phones without a jailbreak. It is based on the MacDirtyCow, KFD (including recent puaf_landa) vulnerabilites and is compatible with iOS versions 15.0\u201315.7.1, 15.7.2 - 15.8.1, 16.0 - 16.1.2, and 16.2 - 16.6.1 and all devices that use A9 to A16 chips. Once installed, you can browse through a catalog of MacDirtyCow or kfd-compatible add-ons much like you can search for jailbreak tweaks on jailbroken handset running Cydia, Sileo, Zebra, or some other package manager app. Trollstore can be installed with it as well.",
"iconURL": "https://i.imgur.com/3aGJJ6M.png",
"tintColor": "663399",
"size": 5950900,
"screenshotURLs": [
"https://ipa.cypwn.xyz/assets/images/ipalibrary.png"
],
"subtitle": "Semi-Jailbroken tweaks store",
"absoluteVersion": "8.2.4",
"appID": "",
"category": "Stores",
"versions": [
{
"version": "8.2.4",
"date": "2024-01-19",
"downloadURL": "https://github.com/straight-tamago/misaka/releases/download/8.2.4/misaka-v8.2.4.ipa",
"localizedDescription": "8.2.4",
"size": 5950900,
"absoluteVersion": "8.2.4"
}
]
},
{
"name": "AppInstaller",
"bundleIdentifier": "com.AppInstalleriOS.AppInstaller-iOS",
"developerName": "AppInstalleriOS",
"version": "1.0",
"versionDate": "2023-09-01",
"versionDescription": "",
"downloadURL": "https://appinstalleriosgh.github.io/Sign/AppInstalleriOS.ipa",
"localizedDescription": "AppInstaller Store",
"iconURL": "https://appinstalleriosgh.github.io/Img/AppInstalleriOSIcon.png",
"tintColor": "663399",
"size": 5950900,
"screenshotURLs": [
"https://ipa.cypwn.xyz/assets/images/ipalibrary.png"
],
"subtitle": "AppInstaller Store",
"absoluteVersion": "1.0",
"appID": "",
"category": "Stores",
"versions": [
{
"version": "1.0",
"date": "2023-09-01",
"downloadURL": "https://appinstalleriosgh.github.io/Sign/AppInstalleriOS.ipa",
"localizedDescription": "1.0",
"size": 5950900,
"absoluteVersion": "1.0"
}
]
},
{
"name": "Blacklist",
"bundleIdentifier": "com.AppInstalleriOS.Blacklist",
"developerName": "AppInstalleriOS",
"version": "1.0",
"versionDate": "2023-09-23",
"versionDescription": "",
"downloadURL": "https://appinstalleriosgh.github.io/Sign/Blacklist.ipa",
"localizedDescription": "Blacklist",
"iconURL": "https://appinstalleriosgh.github.io/Icons/Blacklist.png",
"tintColor": "663399",
"size": 5950900,
"screenshotURLs": [
"https://ipa.cypwn.xyz/assets/images/ipalibrary.png"
],
"subtitle": "Blacklist",
"absoluteVersion": "1.0",
"appID": "",
"category": "Tweaks",
"versions": [
{
"version": "1.0",
"date": "2023-09-23",
"downloadURL": "https://appinstalleriosgh.github.io/Sign/Blacklist.ipa",
"localizedDescription": "1.0",
"size": 5950900,
"absoluteVersion": "1.0"
}
]
},
{
"name": "Nufa",
"bundleIdentifier": "com.nufa.app",
"developerName": "DPixel",
"version": "3.6.0",
"versionDate": "2023-10-04",
"versionDescription": "",
"downloadURL": "https://getfile.dokpub.com/yandex/get/https://disk.yandex.ru/d/Rz4TNzrwwyZCxw",
"localizedDescription": "Laggy AI art genetator, DPixel modified free version",
"iconURL": "https://ipaomtk.com/wp-content/uploads/2023/08/nufa-body-photo-editor-300x300.png",
"tintColor": "663399",
"size": 5950900,
"screenshotURLs": [
"https://ipa.cypwn.xyz/assets/images/ipalibrary.png"
],
"subtitle": "Laggy AI art genetator, DPixel modified free version",
"absoluteVersion": "3.6.0",
"appID": "",
"category": "Tweaked Apps",
"versions": [
{
"version": "3.6.0",
"date": "2023-10-04",
"downloadURL": "https://getfile.dokpub.com/yandex/get/https://disk.yandex.ru/d/Rz4TNzrwwyZCxw",
"localizedDescription": "3.6.0",
"size": 5950900,
"absoluteVersion": "3.6.0"
}
]
},
{
"name": "iVatar",
"bundleIdentifier": "com.mrauxsiuh.doodle",
"developerName": "Parwiz",
"version": "2.0.6",
"versionDate": "2024-04-17",
"versionDescription": "",
"downloadURL": "https://github.com/apptesters-org/Repo/releases/download/14-01-2024/iVatar_2.0.2_%40thisismanpreets_apptesters.org.ipa",
"localizedDescription": "Cracked by Parwiz. Formerly known as iToon, Wonder App, iVatar, iFace",
"iconURL": "https://raw.githubusercontent.com/apptesters-org/Repo/main/icons/com.mrauxsiuh.doodle.png",
"tintColor": "663399",
"size": 5950900,
"screenshotURLs": [
"https://ipa.cypwn.xyz/assets/images/ipalibrary.png"
],
"subtitle": "Cracked by Parwiz. Formerly known as iToon, Wonder App, iVatar, iFace",
"absoluteVersion": "2.0.6",
"appID": "",
"category": "AI",
"versions": [
{
"version": "2.0.6",