-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathapps.json
More file actions
6128 lines (6128 loc) · 481 KB
/
apps.json
File metadata and controls
6128 lines (6128 loc) · 481 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
[
{
"id": "escape-if-you-can",
"title": "Escape If You Can",
"developer": "mobigrow",
"featuredDescription": "Try to find your way through many floors on this classic Available Now!",
"description": "Can You Escape - Deluxe - Out Now!\nAdvance to the next floor by solving the puzzles!\nYou can pick certain items up and use them from your inventory.\nKeep the Escape If You Can app, so we can notify you of new levels.\n9 floors available at the moment!\nSmartphone puzzles! Addicting mini puzzles!\nGorgeous graphics and different themed floors!\nConstant updates of New Floors!\nit's FREE!",
"versions": {
"archived": [
{
"version": "1.0",
"url": "https://archive.org/download/com.dozengames.floorsescape-ios4.3-clutch-2.0.4_202412/Escape%20If%20You%20Can%20%28V1.0%29%20%28iOS4.0%29.ipa"
},
{
"version": "1.1",
"url": "https://archive.org/download/com.dozengames.floorsescape-ios4.3-clutch-2.0.4_202412/Escape%20If%20You%20Can%20%28V1.1%29%20%28iOS4.3%29.ipa"
},
{
"version": "1.2",
"url": "https://archive.org/download/com.dozengames.floorsescape-ios4.3-clutch-2.0.4_202412/Escape%20If%20You%20Can%20%28V1.2%29%20%28iOS4.3%29.ipa"
},
{
"version": "1.2.1",
"url": "https://archive.org/download/com.dozengames.floorsescape-ios4.3-clutch-2.0.4_202412/Escape%20If%20You%20Can%20%28V1.2.1%29%20%28iOS4.0%29.ipa"
},
{
"version": "1.3",
"url": "https://archive.org/download/com.dozengames.floorsescape-ios4.3-clutch-2.0.4_202412/Escape%20If%20You%20Can%20%28V1.3%29%20%28iOS4.0%29.ipa"
},
{
"version": "1.3.1",
"url": "https://archive.org/download/com.dozengames.floorsescape-ios4.3-clutch-2.0.4_202412/Escape%20If%20You%20Can%20%28V1.3.1%29%20%28iOS4.3%29.ipa"
},
{
"version": "1.3.2",
"url": "https://archive.org/download/com.dozengames.floorsescape-ios4.3-clutch-2.0.4_202412/Escape%20If%20You%20Can%20%28V1.3.2%29%20%28iOS4.3%29.ipa"
},
{
"version": "1.3.3",
"url": "https://archive.org/download/com.dozengames.floorsescape-ios4.3-clutch-2.0.4_202412/Escape%20If%20You%20Can%20%28V1.3.3%29%20%28iOS4.3%29.ipa"
}
],
"unarchived": []
},
"compatibility": "iOS 4.3 and Later",
"icon": "cdn/app-icon/escape-if-you-can.jpg",
"featured": true,
"categories": [
"Puzzle",
"Adventure"
]
},
{
"id": "jellycar-3-lite",
"title": "JellyCar 3 Lite",
"developer": "Disney",
"featuredDescription": "This Disney Classic Now on iOS App Archive",
"description": "The wobbly, bouncy, jelly-licious driving game is back!\nDrive through squishy worlds with new vehicles and obstacles.\nUnique jelly physics make every drive different.\nColorful, imaginative levels to explore.\nSimple controls with challenging gameplay.\nPerfect for quick gaming sessions.",
"versions": {
"archived": [
{
"version": "1.0",
"url": "https://archive.org/download/com.disney.jellycar3lite-ios3.1.3-clutch-2.0.4/JellyCar%203%20Lite%201.0%20%283998555%29.ipa"
},
{
"version": "1.0.1",
"url": "https://archive.org/download/com.disney.jellycar3lite-ios3.1.3-clutch-2.0.4/JellyCar%203%20Lite%201.0.1%20%284155986%29.ipa"
}
],
"unarchived": []
},
"compatibility": "iPhoneOS 3.1.3 and Later",
"icon": "cdn/app-icon/jelly-car-3-lite.png",
"featured": true,
"categories": [
"Racing",
"Action"
]
},
{
"id": "disney-gift-card",
"title": "Disney Gift Card",
"developer": "Disney",
"featuredDescription": "Enjoy the gift of Disney Gift Card",
"description": "Check your Disney Gift Card balance anytime.\nSecure and easy to use.\nManage multiple gift cards in one place.\nView transaction history.\nRedeem new gift cards with your camera.\nOfficial Disney app with trusted security.",
"versions": {
"archived": [
{
"version": "1.0",
"url": "https://archive.org/download/com.disney.disneygiftcard-ios3.1.2-clutch-2.0.4/com.disney.DisneyGiftCard-iOS3.1.2-%28Clutch-2.0.4%29.ipa"
}
],
"unarchived": []
},
"compatibility": "iPhoneOS 3.1.2 and Later",
"icon": "cdn/app-icon/disney-gift-card.png",
"featured": true,
"categories": [
"Finance"
]
},
{
"id": "flappy-bird",
"title": "Flappy Bird",
"developer": "dotGears",
"featuredDescription": "The Classic Bird Jumper is Back",
"description": "The infamous challenging flying game!\nTap to keep the bird flying through pipes.\nSimple controls, extremely difficult to master.\nCompete with friends for high scores.\nMinimalist pixel art style.\nAddictive one-more-try gameplay.",
"versions": {
"archived": [
{
"version": "1.0",
"url": "https://archive.org/download/flappy-bird-v-1.3_202412/Flappy%20Bird%20v1.0.ipa"
},
{
"version": "1.1",
"url": "https://archive.org/download/flappy-bird-v-1.3_202412/Flappy%20Bird%20v1.1.ipa"
},
{
"version": "1.2",
"url": "https://archive.org/download/flappy-bird-v-1.3_202412/Flappy%20Bird%20v1.2.ipa"
},
{
"version": "1.3",
"url": "https://archive.org/download/flappy-bird-v-1.3_202412/Flappy%20Bird%20v1.3.ipa"
}
],
"unarchived": []
},
"compatibility": "iOS 6.0 and Later",
"icon": "cdn/app-icon/flappy-bird.png",
"featured": true,
"categories": [
"Action",
"Entertainment"
]
},
{
"id": "lightbike-online",
"title": "LightBike Online",
"developer": "ArtyPig Entertainment",
"featuredDescription": "Experience the classic Tron lightcycle battle in this multiplayer online game!",
"description": "Experience the classic Tron lightcycle battle in this multiplayer online game!\nCompete against players worldwide in real-time battles.\nCustomize your lightbike with different colors and trails.\nClimb the global leaderboards and prove your skills.\nSimple controls with intense competitive gameplay.",
"versions": {
"archived": [
{
"version": "1.0",
"url": "https://archive.org/download/light-bike-online-v-1.2.8-artypig-78/LightBike%20%28V1.0%29%20%28iOS2.2%29.ipa"
},
{
"version": "1.1.1",
"url": "https://archive.org/download/light-bike-online-v-1.2.8-artypig-78/LightBike_v1.1.1_os22.ipa"
},
{
"version": "1.2.5",
"url": "https://archive.org/download/light-bike-online-v-1.2.8-artypig-78/LightBike%201.2.5.ipa"
},
{
"version": "1.2.6",
"url": "https://archive.org/download/light-bike-online-v-1.2.8-artypig-78/LightBike.v1.2.6.iPhone%20C4iD.ipa"
},
{
"version": "1.2.8",
"url": "https://archive.org/download/light-bike-online-v-1.2.8-artypig-78/LightBikeOnline%20v1.2.8%20artypig78.ipa"
}
],
"unarchived": [
"1.1",
"1.2",
"1.2.1",
"1.2.2",
"1.2.3",
"1.2.4",
"1.2.7"
]
},
"compatibility": "iOS 4.3 and Later",
"icon": "cdn/app-icon/lightbike-online.jpeg",
"featured": true,
"categories": [
"Racing",
"Action"
]
},
{
"id": "jellycar-2",
"title": "JellyCar 2",
"developer": "Disney",
"featuredDescription": "New Levels Now Available, Download Now!",
"description": "The sequel to the original jelly physics driving game!\nNew vehicles with unique jelly properties.\nMore challenging levels and obstacles.\nColorful, squishy environments to explore.\nSimple one-touch controls.\nFun for all ages with surprising depth.",
"versions": {
"archived": [
{
"version": "1.0.0",
"url": "https://archive.org/download/jelly-car-2-1.2.2/JellyCar%202%201.0.0.ipa"
},
{
"version": "1.0.1",
"url": "https://archive.org/download/jelly-car-2-1.2.2/JellyCar%202%201.0.1.ipa"
},
{
"version": "1.1",
"url": "https://archive.org/download/jelly-car-2-1.2.2/JellyCar%202%201.1.ipa"
},
{
"version": "1.2",
"url": "https://archive.org/download/jelly-car-2-1.2.2/JellyCar%202%201.2.ipa"
},
{
"version": "1.2.1",
"url": "https://archive.org/download/jelly-car-2-1.2.2/JellyCar%202%201.2.1.ipa"
},
{
"version": "1.2.2",
"url": "https://archive.org/download/jelly-car-2-1.2.2/JellyCar%202%201.2.2.ipa"
}
],
"unarchived": []
},
"compatibility": "iOS 4.0 and Later",
"icon": "cdn/app-icon/jelly-car-2.jpeg",
"featured": false,
"categories": [
"Racing",
"Action"
]
},
{
"id": "godzilla-strike-zone",
"title": "Godzilla: Strike Zone",
"developer": "Warner Bros",
"featuredDescription": "Join the squadron and face GODZILLA! Now archived.",
"description": "Join a squadron of military heroes on a dangerous mission to face the ultimate force of nature: GODZILLA.\nExperience the breathtaking high-altitude sky jump from the movie as you air-drop into a devastated San Francisco and embark on a series of first-person rescue missions to evacuate survivors before it's too late.\nYour courage has never been more needed than it is today.\nSee GODZILLA in theaters May 16.",
"versions": {
"archived": [
{
"version": "1.1.0",
"url": "https://archive.org/download/godzilla-strike-zone-com.wb.godzilla.strikezone-5433-v-1.1.0-i-os-5.0/Godzilla%20Strike%20Zone-%28com.wb.godzilla.strikezone%29-5433-%20%28V1.1.0%29%20%28iOS_5.0%29-.ipa"
}
],
"unarchived": []
},
"compatibility": "iOS 5.0 and Later",
"icon": "cdn/app-icon/godzilla-strike-zone.png",
"featured": true,
"categories": [
"Games",
"Entertainment"
]
},
{
"id": "buster-bash",
"title": "Buster Bash",
"developer": "Ground Up Logic",
"featuredDescription": "Official Mobile Game of All-Star catcher Buster Posey.",
"description": "BUSTER BASH -- Official Mobile Game of All-Star catcher Buster Posey.\n\nFollow in Buster's footsteps as you begin in the backyard of Leesburg, Georgia and move up levels to eventually join the elite ranks of the Big Leagues.\nYou get 10 baseballs per round to hit as many homers as possible. Players earn sunflower seeds to buy equipment and power-ups to improve hitting by knocking them out of the sky or through in-app purchases.\n\nSwipe the screen to knock pitches over the barn or outfield fence. You'll hit tennis balls and wiffle balls as a kid, but as you move up, it's all hardballs, and the pitchers get tougher!\n\nFeatures include:\n\n+ original music from Battery Amp\n\n+ equipment upgrades through the UNDER ARMOUR store\n\n+ five levels: Backyard in Leesburg, the TOYOTA Youth Championship, the UNDER ARMOUR All-American Game, College Playoffs, and the Big Leagues\n\nFollow on Twitter @BusterBash or Like us on Facebook for official Buster Bash giveaways.",
"versions": {
"archived": [
{
"version": "2.12",
"url": "https://archive.org/download/com.grounduplogic.bb-ios7.0-clutch-2.0.4_202505/com.grounduplogic.bb-iOS7.0-%28Clutch-2.0.4%29.ipa"
}
],
"unarchived": []
},
"compatibility": "iOS 7.0 and Later",
"icon": "cdn/app-icon/buster-bash.png",
"featured": false,
"categories": [
"Games",
"Sports",
"Casual"
]
},
{
"id": "beer-bounce",
"title": "Beer Bounce",
"developer": "Developer Unknown",
"featuredDescription": "Unknown",
"description": "no description found",
"versions": {
"archived": [
{
"version": "1.0.0",
"url": "https://archive.org/download/beer-bounce-quarters-1.0/Beer%20Bounce%20%28Quarters%29%201.0.ipa"
}
],
"unarchived": []
},
"compatibility": "iPhoneOS 2.0 and Later",
"icon": "cdn/app-icon/beer-bounce.png",
"featured": false,
"categories": [
"Entertainment",
"Beer"
]
},
{
"id": "beer-ratings-guide",
"title": "Beer Ratings Guide",
"developer": "Nirvino",
"featuredDescription": "100,000+ bottles of beer at your fingertips.",
"description": "Put 100,000+ bottles of beer at your fingertips.\nStuck in a restaurant staring blankly at the menu? ...or perhaps at the grocery store doing 'Eeny, meeny, miny, moe' – believe us, we've been there. Nirvino's Beer Ratings Guide iPhone application helps you choose that great glass of beer when you need it most! Search our 100,000 beer database by name, price, style, food pairing, flavor profile, region, producer, and designation.\n\nForgot last night's beer?\nKeep track of the great (and not so great) beer you discover with our Beer Ratings Guide. No login or lengthy forms to fill out. Rate a beer with just one simple tap and it automatically saves to your personal ratings list. It's like your little black book for beer!\n\nAccess the most important information you need to make a quick and easy purchasing decision:\n\n- Beer Name\n- Ratings\n- Bottle Shot\n- Pairing Recommendations\n- Flavor Profile\n- Price",
"versions": {
"archived": [
{
"version": "1.21",
"url": "https://archive.org/download/beer-ratings-com.nirvino.-beer-ratings-guide-v-1.21-i-os-3.1/Beer%20Ratings-%28com.nirvino.BeerRatingsGuide%29%20%28V1.21%29%20%28iOS_3.1%29.ipa"
}
],
"unarchived": []
},
"compatibility": "iPhoneOS 3.1 and Later",
"icon": "cdn/app-icon/beer-ratings-guide.png",
"featured": false,
"categories": [
"Lifestyle",
"Food & Drink",
"Beer"
]
},
{
"id": "beer-goggles-by-hive-mind",
"title": "Beer Goggles by Hive Mind",
"developer": "Hive Mind LLC",
"featuredDescription": "Test your judgment with Beer Goggles!",
"description": "Ever wondered what that great looking girl at the bar really looks like? Take our test to see if your eyes are giving your brain the right information! Life is too short for regrets, and 'Beer Goggles by Hive Mind' will help you dodge those uncomfortable mornings, awkward walks of shame, and trips to the emergency room!\n\nRate a set of three carefully selected 3D models and 'Beer Goggles by Hive Mind' will use a unique algorithm that will determine how closely you matched the ideal ratings and determine how badly your judgment is impaired.\n\nFor entertainment purposes only!\n\n\"I checked this app before I left the bar with a girl and lucky for me it told me to take a closer look... Thanks guys!\"\n\n\"'Beer Goggles by Hive Mind' saved me!!! I was about to make the biggest mistake of my life.\"\n\n\"GAAAAAAAH!! You should put a warning on some of your pictures!\"\n\nVersion History\n1.1 - Minor Bug Fix\n1.2 - Improved User Interface\n- Increased Model Display Time\n- Added New Models and Quotes\n1.3 - Code Optimization\n1.4 - New Models, Bug Fixes\n2.0 - iOS4 Ready",
"versions": {
"archived": [
{
"version": "1.3",
"url": "https://archive.org/download/beer-goggles-by-hive-mind-1.3/Beer%20Goggles%20by%20Hive%20Mind%201.3.ipa"
}
],
"unarchived": []
},
"compatibility": "iPhoneOS 2.2.1 and Later",
"icon": "cdn/app-icon/beer-goggles-by-hive-mind.png",
"featured": false,
"categories": [
"Games",
"Entertainment",
"Lifestyle",
"Beer"
]
},
{
"id": "beer-pong-challenge",
"title": "Beer Pong Challenge",
"developer": "Jeremy Lazarus",
"featuredDescription": "Play Beer Pong on your iPhone!",
"description": "Play Beer Pong on the iPhone! Challenge a friend with a classic 6 or 10 cup table, or compete against your own high scores in the single-player arcade game mode. Decorate the game's garage each time you achieve a new high score by snapping a photo of yourself!\n\n• New Officially licensed update with BOMBED Beer Pong and www.GetBOMBED.com – the world's #1 brand in beer pong.\n\n• Game Graphics now feature the Official BOMBED Beer Pong tables, balls, posters and more",
"versions": {
"archived": [
{
"version": "1.0.7",
"url": "https://archive.org/download/com.superexperiment.beerpong-v-1.0.7-i-os-2.2-clutch-2.0.4/com.superexperiment.beerpong%20%28V1.0.7%29%20-iOS2.2-%28Clutch-2.0.4%29.ipa"
}
],
"unarchived": []
},
"compatibility": "iPhoneOS 2.2 and Later",
"icon": "cdn/app-icon/beer-pong-challenge.png",
"featured": false,
"categories": [
"Games",
"Entertainment",
"Casual",
"Sports",
"Beer"
]
},
{
"id": "beerduel",
"title": "BeerDuel",
"developer": "iMouse",
"featuredDescription": "A game of Cowboys and beer cups!",
"description": "It's a game of Cowboys.\nYou can play with your friends.\nSlide three cups with draft beer on a table as far as you can.\nThe score you get depends on where the cups stop.\n1) Move the cup to appropriate starting position.\n2) Slide it!\nTips: you can also hit other cups to change the situation",
"versions": {
"archived": [
{
"version": "1.0",
"url": "https://archive.org/download/beer-duel-i-mouse.-beer-duel-v-1.0-i-os-2.1/BeerDuel-%28iMouse.BeerDuel%29%28V1.0%29%20%28iOS_2.1%29.ipa"
}
],
"unarchived": [
"1.1"
]
},
"compatibility": "iPhoneOS 2.1 and Later",
"icon": "cdn/app-icon/beerduel.png",
"featured": false,
"categories": [
"Games",
"Entertainment",
"Action",
"Simulation",
"Beer"
]
},
{
"id": "ibeertender",
"title": "iBeerTender",
"developer": "Developer Unknown",
"featuredDescription": "Unknown",
"description": "no description found",
"versions": {
"archived": [
{
"version": "1.4",
"url": "https://archive.org/download/i-beer-tender-v-1.4/iBeerTender%20v1.4%20%20.ipa"
}
],
"unarchived": []
},
"compatibility": "iPhoneOS 3.0 and Later",
"icon": "cdn/app-icon/ibeertender.png",
"featured": false,
"categories": [
"Games",
"Beer"
]
},
{
"id": "ibeer-keg",
"title": "iBeer Keg (iBeer's huge draught machine, Coffee Maker, Soda Dispenser, and Milk Barrel)",
"developer": "Hottrix",
"featuredDescription": "Brew, pour, and drink beer on your iPad!",
"description": "Brew, pour, and drink beer on your iPad. It's enormous, totally realistic, and even acts as a draught for your iPhone's iBeer™.\n\nThis hilarious visual gag takes full advantage of iPad's omnidirectional nature. There's no wrong way to hold iBeerKeg™. It's a stunningly lifelike pool of beer and YOU decide where to 'open' the keg to drink or pour.\n\nTilt for aquarium action, shake for foam and waves, play with condensation, slime and bubbles, even pretend to pour iBeer from iPad to iPhone.\n\nThis isn't just iBeer's big brother on steroids, it's THE interactive liquid simulation for iPad programmed from the ground up by the inventors of iBeer. Gigantic, spectacular, hysterical.\n\nYou've seen it on TV, YouTube, and read about it in your favorite paper. Now it can be yours!\nBonus burp included.\nGet it today and stop those hangovers forever!\n\nJust updated:\n✔ FREE steaming coffee: Gallons of it!\n✔ MORE DRINKS: Champagne & Wines for the distinguished prankster.\n✔ Improved: Trippy Alien Disco Juice, Water, Cola, Milk etc.\n✔ Connects to iBeer for iPhone and iPod touch (pending Apple approval)\n✔ BlueTooth and WIFI drink sharing among all iOS devices (once iBeer-update for iPhone and iPod touch is approved by Apple). Sharing is caring!\n✔ Color mixing when pouring from device to device (mix coffee & beer for a steamy mess)\n\nMAKE YOUR OWN IPHONE APP\nin 2 minutes with AppCat. http://www.app.cat\n\nQuestions and comments? Talk to us!\nWe answer every email and return every call about the world's only keg with full warranty, detailed instructions, video tutorials, and 24/7 support!\n\nHOTTRIX®\n1-877-HOTTRIX\nP. 702-765-4692\nF. 702-643 0777\nhttp://www.hottrixdownload.com\nhelp@hottrix.com\n7500 W Lake Mead Blvd.\nSuite 9-478\nLas Vegas, NV 89128",
"versions": {
"archived": [
{
"version": "1.2",
"url": "https://archive.org/download/i-beer.-keg-v-1.2/iBeer.Keg%20v1.2.ipa"
}
],
"unarchived": [
"1.1"
]
},
"compatibility": "iPhoneOS 3.2 and Later",
"icon": "cdn/app-icon/ibeer-keg.png",
"featured": false,
"categories": [
"Games",
"Action",
"Simulation",
"Entertainment",
"Beer"
]
},
{
"id": "ibeer-challenge",
"title": "iBeer Challenge",
"developer": "EzMoBo",
"featuredDescription": "Take your drinking games to the next level!",
"description": "Ditch traditional games such as quarters and start pushing beers!\n\nTake your drinking games to the next level with the extreme iPhone/iPod Touch game Beer Challenge!\n\nThe object of the game is to push your alcoholic beverage as close to the little white line as possible. Think it sounds easy? With 10 distances to slide your beer, topping out at more than 7040mm, this game will challenge your physical prowess and force your mental wit to devise the perfect plan in order to become THE KING OF PUSH!!!\n\nFrom Version 2.0, we offers new multiplayer support to battle your friends for the crown! Push against 3 of your best friends to determine who really is the top dog.\n\nTired of pushing beer? Choose other types of drinks such as whisky, wine, or stout beer which offer different physics that will force you to switch up your strategy to stay on top.\n\nWith a whimsical soundtrack, a sexy damsel cheering you on, and the option to choose your off hand for a different pushing experience, Beer Challenge is a simple game that offers countless possibilities!\n\nACHTUNG! The creators of this game are not liable for any damages caused to your device due to having too much fun. If your buddy accidentally breaks your brand new 3GS from over exertion, please seek them for damages.\n\nFollow us on Twitter! http://www.twitter.com/EzMoBoGames",
"versions": {
"archived": [
{
"version": "1.0",
"url": "https://archive.org/download/i-beer-challenge-com.ezmobo.i-beer-challenge-v-1.0-i-os-2.2.1/iBeerChallenge-%28com.ezmobo.iBeerChallenge%29%28V1.0%29%20%28iOS_2.2.1%29.ipa"
}
],
"unarchived": [
"2.3"
]
},
"compatibility": "iPhoneOS 2.2.1 and Later",
"icon": "cdn/app-icon/ibeer-challenge.png",
"featured": false,
"categories": [
"Games",
"Entertainment",
"Family",
"Sports",
"Beer"
]
},
{
"id": "ibeer-free",
"title": "iBeer Free",
"developer": "Hottrix",
"featuredDescription": "Drink beer on your iPhone. Voted 'Best of iTunes'!",
"description": "Drink beer on your iPhone. Voted 'Best of iTunes' and downloaded over 90 Million times! This hilarious visual trick behaves like a real glass of beer. Connect with friends or strangers for drink sharing, live voice chat and photo sharing! Tilt to drink, shake for foam, even pour iBeer into other iPhones.\n\n___________________________________\n\n'Best iPhone app' (CNN & NY Times)\n'Must-have iPhone app' (FORTUNE & TIME)\n'Top 10 iPod touch app' (Newsweek)\n'iTunes Bestseller Awards' (Apple Charts)\n___________________________________\n\nGet 4 different types of beer, steaming hot coffee, and mouthwash by switching off the ads. Milk, Soda, Wine, Water, Champagne, Vodka etc. available separately.\n\nSelect your own photo backgrounds or use our included trick screens.\n\nYou've seen it on TV, YouTube, and read about it in your favorite paper. Now it can be yours!\nBonus burp included.\nGet it today and stop those hangovers forever!\n\nCHECK OUT OUR NEW APP:\nInstaPrompter. Secret LIVE Teleprompter hidden inside a fake Note App to win meetings and interviews: http://www.instaprompter.com",
"versions": {
"archived": [
{
"version": "1.28",
"url": "https://archive.org/download/i-beer-free-com.hottrix.i-beer-free-9.1-i-os-7.0-6d-1d-897bd-92dbe-425ace-804969de-235b/com.hottrix.iBeerFree-%20%28V1.28%29%20-iOS3.2-%28Clutch-2.0.4%29.ipa"
},
{
"version": "9.1",
"url": "https://archive.org/download/i-beer-free-com.hottrix.i-beer-free-9.1-i-os-7.0-6d-1d-897bd-92dbe-425ace-804969de-235b/iBeer%20Free-%28com.hottrix.iBeerFree%29-9.1-%28iOS_7.0%29-6d1d897bd92dbe425ace804969de235b.ipa"
}
],
"unarchived": [
"1.01",
"1.2",
"7.3",
"7.5",
"7.6",
"11.4"
]
},
"compatibility": "iOS 11.0 and Later",
"icon": "cdn/app-icon/ibeer-free.png",
"featured": false,
"categories": [
"Business",
"Food & Drink",
"Beer"
]
},
{
"id": "ibeer-pro",
"title": "iBeer Pro - Drink beer on your iPhone",
"developer": "Hottrix",
"featuredDescription": "Drink beer on your iPhone. Voted 'Best of iTunes'!",
"description": "Drink beer on your iPhone. Voted 'Best of iTunes' and downloaded over 90 million times! This hilarious visual trick behaves like a real glass of beer. Connect with friends or strangers for drink sharing, live voice chat and photo sharing!\n\nTilt to drink, shake for foam, even pour iBeer into other iPhones.\n___________________________________\n\n'Best iPhone app' (CNN & NY Times)\n'Must-have iPhone app' (FORTUNE & TIME)\n'Top 10 iPod touch app' (Newsweek)\n'iTunes Bestseller Awards' (Apple Charts)\n___________________________________\n\nIncludes 4 different types of beer, steaming hot coffee, and mouthwash!\nMilk, Soda, Wine, Water, Champagne, Vodka etc. available separately.\n\nSelect your own photo backgrounds or use our included trick screens.\n\nYou've seen it on TV, YouTube, and read about it in your favorite paper. Now it can be yours!\nBonus burp included.\nGet it today and stop those hangovers forever!\n\nCHECK OUT OUR NEW APP:\nInstaPrompter. Secret LIVE Teleprompter hidden inside a fake Note App to win meetings and interviews: http://www.instaprompter.com",
"versions": {
"archived": [
{
"version": "1.22",
"url": "https://archive.org/download/com.hottrix.i-beer-v-4.41-i-os-3.0-clutch-2.0.4-2/iBeer-iDexRiky-%28V1.22%29%20iPhoneOS%202.0.ipa"
},
{
"version": "2.01",
"url": "https://archive.org/download/com.hottrix.i-beer-v-4.41-i-os-3.0-clutch-2.0.4-2/iBeer-%28com.hottrix.iBeer%29%28V2.01%29%28iOS_2.0%29.ipa"
},
{
"version": "2.03",
"url": "https://archive.org/download/com.hottrix.i-beer-v-4.41-i-os-3.0-clutch-2.0.4-2/iBeer_%28v2.0.3%29.ipa"
},
{
"version": "2.04",
"url": "https://archive.org/download/com.hottrix.i-beer-v-4.41-i-os-3.0-clutch-2.0.4-2/iBeer-%28com.hottrix.iBeer%29%28V2.04%29%28iOS_2.1%29.ipa"
},
{
"version": "3.01",
"url": "https://archive.org/download/com.hottrix.i-beer-v-4.41-i-os-3.0-clutch-2.0.4-2/iBeer-%28com.hottrix.iBeer%29%28V3.01%29%28iOS_2.0%29.ipa"
},
{
"version": "3.05",
"url": "https://archive.org/download/com.hottrix.i-beer-v-4.41-i-os-3.0-clutch-2.0.4-2/iBeer_v3.05_os20.ipa"
},
{
"version": "4.41",
"url": "https://archive.org/download/com.hottrix.i-beer-v-4.41-i-os-3.0-clutch-2.0.4-2/com.hottrix.iBeer%20%28V4.41%29%20-iOS3.0-%28Clutch-2.0.4%29-2.ipa"
}
],
"unarchived": [
"7.6"
]
},
"compatibility": "iOS 7.0 and Later",
"icon": "cdn/app-icon/ibeer-pro.png",
"featured": false,
"categories": [
"Food & Drink",
"Beer"
]
},
{
"id": "isoda",
"title": "iSoda (iWater, iCola and more)",
"developer": "Hottrix",
"featuredDescription": "Drink Soda on your iPhone and iPod touch. 5 Drinks in One!",
"description": "From legendary creators of iBeer, Hottrix, comes this iTunes Award Winner.\nDrink Soda on your iPhone and iPod touch. 5 Drinks in One!\n\nThis hilarious sight-gag is fully interactive and behaves like a real glass of Cola, Water, Energy Drink and more thanks to the iPhone sensors and our spare time.\n\nTilt to sip, shake for foam, even pour iSoda from device to device. Modeled after our award winning iBeer (but tons more realistic) this virtual Soda Machine takes full advantage of iPhone's high-res screen, accelerometer, and speakers. Even 'sell' Soda with our nifty Trick-Coin-Slot.\n\nYou've seen it on TV, YouTube, and read about it in your favorite paper. Now it can be yours!\nBonus burp included.\nGet it today and never be thirsty again!\n\nFEATURES\nDrink\nShake (foam)\nBurp (on/off)\n5 Drinks in One\nTrick-Coin-Slot\n\nBONUS\nFizzy and Still Water\nMouthwash Gag\nHot Vending Machine Interface\nAstonishing realism\nFully interactive\nMulti level foam\nMotion control bubbles\nCustomize sound and behavior\n\nSUPPORT\nVideo tutorials: www.hottrixdownload.com\nDetailed instructions\n24/7 support\n\nNewslflash:\nGet our new iBeerKeg™ for iPad. Brew, pour, and drink epic amounts of beer on your iPad. It's enormous, totally realistic, and even acts as a draught for your iPhone's iBeer\n\n*************\nMORE WACKY HOTTRIX APPS\nAppCat (Make your own app in 2 minutes: http://www.app.cat)\niBeer (Best app CNN, New York Times)\niBeerKeg (iBeer's big brother on steroids)\niMilk (Sober iBeer. Even shakes whipped cream)\niMunchies (Hilarious iPhone Popcorn machine)\niBug (Feed, tickle, tumble cute or ugly bugs. Make them fat!)\nHottrixPhone (Barack Obama calls your iPhone, or Elvis, or Mum)\n*************",
"versions": {
"archived": [
{
"version": "1.0",
"url": "https://archive.org/download/i-soda-com.hottrix.i-soda-v-1.04-i-os-2.0/iSoda-%28com.hottrix.iSoda%29%28V1.0%29%20%28iOS_2.2%29.ipa"
},
{
"version": "1.04",
"url": "https://archive.org/download/i-soda-com.hottrix.i-soda-v-1.04-i-os-2.0/iSoda-%28com.hottrix.iSoda%29%28V1.04%29%20%28iOS_2.0%29.ipa"
}
],
"unarchived": [
"2.0.4"
]
},
"compatibility": "iPhoneOS 2.0 and Later",
"icon": "cdn/app-icon/isoda.png",
"featured": false,
"categories": [
"Entertainment",
"Action",
"Games",
"Simulation"
]
},
{
"id": "youtube",
"title": "YouTube",
"developer": "Google",
"featuredDescription": "Watch, upload, and share videos with the official YouTube app.",
"description": "Get the official YouTube app on iPhones and iPads. See what the world is watching -- from the hottest music videos to what's popular in gaming, fashion, beauty, news, learning and more. Subscribe to channels you love, create content of your own, share with friends, and watch on any device.\n\nWatch and subscribe\n● Browse personal recommendations on Home\n● See the latest from your favorite channels in Subscriptions\n● Look up videos you've watched, liked, and saved for later in Library\n\nExplore different topics, what's popular, and on the rise (available in select countries)\n● Stay up to date on what's popular in music, gaming, beauty, news, learning and more\n● See what's trending on YouTube and around the world on Explore\n● Learn about the coolest Creators, Gamers, and Artists on the Rise (available in select countries)\n\nConnect with the YouTube community\n● Keep up with your favorites creators with Posts, Stories, Premieres, and Live streams\n● Join the conversation with comments and interact with creators and other community members\n\nCreate content from your mobile device\n● Create or upload your own videos directly in the app\n● Engage with your audience in real time with live streaming right from the app\n\nFind the experience that fits you and your family (available in select countries)\n● Every family has their own approach to online video. Learn about your options: the YouTube Kids app or a new parent supervised experience on YouTube at youtube.com/myfamily\n\nSupport creators you love with channel memberships (available in select countries)\n● Join channels that offer paid monthly memberships and support their work\n● Get access to exclusive perks from the channel & become part of their members community\n● Stand out in comments and live chats with a loyalty badge next to your username\n\nUpgrade to YouTube Premium (available in select countries)\n● Watch videos uninterrupted by ads, while using other apps, or when the screen is locked\n● Save videos for when you really need them – like when you're on a plane or commuting\n● Get access to YouTube Music Premium as part of your benefits\n\nNote: If you subscribe via Apple, payment will be charged to App Store Account at confirmation of purchase. Subscription automatically renews unless auto-renew is turned off at least 24 hours before the end of the current period. Account will be charged for renewal within 24 hours prior to the end of the current period at the rate of the selected plan. Subscriptions and auto-renewal may be managed by going to Account Settings after purchase.\n\nYouTube paid service terms: https://www.youtube.com/t/terms_paidservice.\nPrivacy policy: https://www.google.com/policies/privacy",
"versions": {
"archived": [
{
"version": "1.0.0",
"url": "https://archive.org/download/you-tube-11.13.7/YouTube%201.0.0%20%281%29.ipa"
},
{
"version": "1.0.1",
"url": "https://archive.org/download/you-tube-11.13.7/YouTube-v1.0.1--iOS4.3-%28Clutch-1.4.6%29.ipa"
},
{
"version": "1.1.0",
"url": "https://archive.org/download/you-tube-11.13.7/com.google.ios.youtube%20%28V1.1.0%29%20-iOS5.0-%28Clutch-2.0.4%29.ipa"
},
{
"version": "1.2.1",
"url": "https://archive.org/download/you-tube-11.13.7/YouTube%20Watch%20Listen%20Stream%20%5BGoogle%5D%20%28v1.2.1%20v1.2.1.5201%203GS%20Univ%20LP%20os50%29.rc333_841.ipa"
},
{
"version": "1.3.0",
"url": "https://archive.org/download/you-tube-11.13.7/YouTube-v1.3.0--iOS5.0-%28Clutch-1.4.6%29.ipa"
},
{
"version": "1.4.0",
"url": "https://archive.org/download/you-tube-11.13.7/YouTube-%28com.google.ios.youtube%29-%28V1.4.0%29-%28iOS_6.0%29.ipa"
},
{
"version": "2.2.0",
"url": "https://archive.org/download/you-tube-11.13.7/YouTube%20Watch%20Listen%20Stream%20%5BGoogle%5D%20%28v2.2.0%20v2.2.0.10119%203GS%20Univ%20LP%20os60%29.rc333_841.ipa"
},
{
"version": "2.3.1",
"url": "https://archive.org/download/you-tube-11.13.7/com.google.ios.youtube%20%28V2.3.1%29%20%20-iOS6.0-%28Clutch-2.0.4%29.ipa"
},
{
"version": "2.9.3",
"url": "https://archive.org/download/you-tube-11.13.7/YouTube-%28com.google.ios.youtube%29%28V2.9.3%29%28iOS_6.0%29.ipa"
},
{
"version": "2.10.2",
"url": "https://archive.org/download/you-tube-11.13.7/com.google.ios.youtube%20%28V2.10.2%29%20-iOS6.0-%28Clutch-2.0.4%29.ipa"
},
{
"version": "2.10.3",
"url": "https://archive.org/download/you-tube-11.13.7/YouTube%20Watch%20Listen%20Stream%20%5BGoogle%5D%20%28v2.10.3%203GS%20Univ%20LP%20os60%29.rc333_841.ipa"
},
{
"version": "10.11.11546",
"url": "https://archive.org/download/you-tube-11.13.7/YouTube-v10.11.11546--iOS6.0-%28Clutch-1.4.6%29.ipa"
},
{
"version": "10.28.11649",
"url": "https://archive.org/download/you-tube-11.13.7/YouTube-%28com.google.ios.youtube%29%28V10.28.11649%29%20%28iOS_7.0%29.ipa"
},
{
"version": "11.3.7",
"url": "https://archive.org/download/you-tube-11.13.7/YouTube%2011.13.7.ipa"
}
],
"unarchived": [
"2.1.0",
"2.7.1",
"15.43.4",
"19.46.3",
"19.47.7",
"19.49.3",
"19.49.5",
"19.49.7",
"20.02.3",
"20.03.02",
"20.04.1",
"20.05.4",
"20.06.03",
"20.07.6",
"20.08.3",
"20.09.3",
"20.10.3",
"20.10.4",
"20.11.6",
"20.12.4",
"20.13.5",
"20.14.2",
"20.15.1",
"20.16.7",
"20.18.4",
"20.18.5",
"20.19.2",
"20.19.3"
]
},
"compatibility": "iOS 15.0 and Later",
"icon": "cdn/app-icon/youtube.png",
"featured": true,
"categories": [
"Photo & Video",
"Entertainment"
]
},
{
"id": "jellycar",
"title": "JellyCar",
"developer": "Walaber",
"featuredDescription": "Put a New Car in your garage! JellyCar 3 is now available!",
"description": "The hit driving platform puzzle game is all new! JellyCar 3 features all new levels, all new car customization, all new ghost racing, and so much more. So hop in, start your jelly engines, and find the stop sign!\n\nhttp://www.itunes.com/app/jellycar3\n\nJellyCar is a driving/platforming game for both iPhone and iPod touch. The game is about driving a squishy car through squishy worlds, trying to reach the exit. JellyCar features soft body physics for all of the objects in the world. Also your car can transform for a limited time to aid progression through the level.\n\n*** NOTE * touch the \"?\" squishy icon on the main menu for the \"how to play\" instructions!\n\nFeatures:\n* Soft-body physics!\n* Simple touch and tilt controls\n* 28 levels to play\n* global high score ranking system\n* original music by Matt McCarthy\n* full sound effects\n* option to listen to iPod music while playing the game.\n* Localized into:\n 日本語\n** 繁體中文\n** 简体中文\n** 한국\n** deutsch\n** русский\n** Nederlands\n** français\n** italiano\n** polski\n** suomi\n\nControls:\n* Touch (and hold) on either side of the screen to drive in that direction.\n* Tilt the device to rotate your car\n\n* Touch with 3 fingers on the screen to pause/quit the current level.\n* Use the standard Pinch gesture to zoom in/out at any time.",
"versions": {
"archived": [
{
"version": "1.4.1",
"url": "https://archive.org/download/jelly-car-v-1.5.4-os-313/com.walaber.jellycar-iOS2.1-%28V1.4.1%29%28Clutch-2.0.4%29.ipa"
},
{
"version": "1.5.1",
"url": "https://archive.org/download/jelly-car-v-1.5.4-os-313/com.walaber.jellycar-iOS2.2.1-%28V1.5.1%29%28Clutch-2.0.4%29.ipa"
},
{
"version": "1.5.4",
"url": "https://archive.org/download/jelly-car-v-1.5.4-os-313/JellyCar_v1.5.4_os313.ipa"
}
],
"unarchived": [
"1.0",
"1.2"
]
},
"compatibility": "Unknown",
"icon": "cdn/app-icon/jelly-car.png",
"featured": false,
"categories": [
"Entertainment",
"Action",
"Puzzle",
"Games"
]
},
{
"id": "psecu-mobile-for-ipad",
"title": "PSECU Mobile+ for iPad",
"developer": "Pennsylvania State Employees Credit Union",
"featuredDescription": "PSECU Mobile+ for iPad enables you to quickly and conveniently access your financial information while on the go.",
"description": "***To get started, visit psecu.com, log into your Online Banking account, and visit the \"Mobile Solutions\" page under My Money.***\n\nPSECU Mobile+ for iPad enables you to quickly and conveniently access your financial information while on the go. You can take advantage of the following features:\n\n* View account balances and transactional history\n* Transfer funds\n* Schedule bill payments\n* Find the nearest surcharge-free ATM\n* Deposit checks\n* FICO® Score Service \n\nFICO and Fair Isaac® are registered trademarks of the Fair Isaac Corporation in the United States, and may be trademarks or registered trademarks of the Fair Isaac Corporation in other countries. PSECU is not a credit reporting agency. Fair Isaac is not an affiliate company of PSECU. Members must have PSECU checking or a PSECU loan to be eligible for this service. Joint Owners are not eligible.",
"versions": {
"archived": [
{
"version": "2.6",
"url": "https://archive.org/download/com.psecu.tablet-ios9.0-clutch-2.0.4/com.PSECU.Tablet-iOS9.0%20%28V2.6%29%20%28Clutch-2.0.4%29.ipa"
}
],
"unarchived": []
},
"compatibility": "iOS 8.0 and Later",
"icon": "cdn/app-icon/psecu-mobile-for-ipad.png",
"featured": false,
"categories": [
"Finance"
]
},
{
"id": "abc-for-kids",
"title": "ABC For Kids",
"developer": "Australian Broadcasting Corporation",
"featuredDescription": "Have hours of fun with the ABC For Kids application.",
"description": "Have hours of fun with the ABC For Kids application. Watch and listen to some of the best children’s content available from Australia's leading and most trusted children's brand.\n\nWith easy access to the ABC For Kids iTunes catalogue, your kids will never be bored again!\n\nFeatured Artists\nThe latest version of the app features clips and songs from Bananas in Pyjamas and Jay Laga’aia.\n\nMusic\nYour kids will love listening to the featured music tracks.\n\nVideo\nCheck out Bananas in Pyjamas, Jay Laga’aia and the much-loved Giggle and Hoot!",
"versions": {
"archived": [
{
"version": "1.7.2.2",
"url": "https://archive.org/download/com.abc-abc-for-kids-i-os-6.0-v-1.7.2.2-clutch-2.0.4/com.abc%20Abc%20For%20Kids-iOS%206.0%20%28V1.7.2.2%29%28Clutch-2.0.4%29.ipa"
}
],
"unarchived": []
},
"compatibility": "Unknown",
"icon": "cdn/app-icon/abc-for-kids.png",
"featured": false,
"categories": [
"Education"
]
},
{
"id": "godzilla-monster-mayhem",
"title": "Godzilla - Monster Mayhem",
"developer": "Indiagames",
"featuredDescription": "Godzilla - Monster mayhem is a monstrous one-on-one fighting game where you get to fight as King Ghidorah or as mighty Godzilla himself.",
"description": "Godzilla - Monster mayhem is a monstrous one-on-one fighting game where you get to fight as King Ghidorah or as mighty Godzilla himself. Fight using innovative gesture controls in a 3 round showdown against you arch nemesis using various attacks and counter moves. Challenge your friends to showdowns via email or through Facebook. Brag about your destructive fighting capabilities by posting directly to your Wall on Facebook.\n\nFeatures of the Game:\n- Gesture based fighting controls\n- Range of attacking and Counter moves\n- 3 Round matches\n- Upload you scores\n- Challenge your friends to see who's the better fighter\n- Post directly to Facebook and let everyone know about your skills\n\nGodzilla, Gigan, Angurius, King Ghidorah, Hedorah, Mechagodzilla, Fire Rodan, Megalon. All Related Characters and Character Designs are Trademarks of Toho Co., Ltd. 2009 Toho Co., Ltd. All Rights Reserved. Licensed and Distributed by Indiagames Ltd. 2009 Indiagames Ltd.",
"versions": {
"archived": [
{
"version": "1.0",
"url": "https://archive.org/download/godzilla-monster-mayhem-1.0-hexhammer/Godzilla%20%20%20Monster%20Mayhem%201.0%20Hexhammer.ipa"
}
],
"unarchived": []
},
"compatibility": "Unknown",
"icon": "cdn/app-icon/godzilla-monster-mayhem.png",
"featured": false,
"categories": [
"Games",
"Action",
"Fighting"
]
},
{
"id": "my-singing-monsters",
"title": "My Singing Monsters",
"developer": "Big Blue Bubble",
"featuredDescription": "Welcome to My Singing Monsters! Breed them, feed them, listen to them sing!",
"description": "Welcome to My Singing Monsters! Breed them, feed them, listen to them sing!\n\nRaise a monster pet, then feed your musical monster to help them grow. Take care of a collection of fun monster characters in this free musical game for the whole family!\n\nCreate an island full of Singing Monsters, then watch your song evolve as you breed and upgrade happy monster pets. Design and build unique decorations to make your world look just the way you want, then share your creation with friends! You’ll love exploring the wonderful fantasy land of the Monster World!\n\nDownload My Singing Monsters today — Happy Monstering!\n\nFEATURES:\n• Collect and level up over 250 cute and funny monsters — dragons are so last year…\n• Customize your islands with cool decorations and catchy music\n• Enjoy awesome graphics and character animation\n• Play with friends around the world\n• Discover new updates and events year-round\n________\n\nSTAY TUNED:\nFacebook: https://www.facebook.com/MySingingMonsters\nTwitter: https://www.twitter.com/SingingMonsters\nInstagram: https://www.instagram.com/mysingingmonsters\nYouTube: https://www.youtube.com/mysingingmonsters\n\nPLEASE NOTE! My Singing Monsters is completely free to play, however some game items can also be purchased for real money. If you don't want to use this feature, please disable in-app purchases in your device's settings. My Singing Monsters requires an internet connection to play (3G or WiFi).\n\nHELP & SUPPORT: Get in touch with the Monster-Handlers by visiting www.bigbluebubble.com/support or contacting us in game by going to Options > Support.",
"versions": {
"archived": [
{
"version": "3.0.5",
"url": "https://archive.org/download/com.bigbluebubble.-my-singing-monsters-v-3.0.5-i-os-9.0-clutch-2.0.4/com.bigbluebubble.My-Singing-Monsters-%20%28V3.0.5%29%20-iOS9.0-%28Clutch-2.0.4%29.ipa"
}
],
"unarchived": []
},
"compatibility": "iOS 13.0 and Later",
"icon": "cdn/app-icon/my-singing-monsters.png",
"featured": false,
"categories": [
"Simulation",
"Music",
"Games"
]
},
{
"id": "dropoly",
"title": "Dropoly",
"developer": "Inovaworks",
"featuredDescription": "Dropoly is an exciting remake of BlockOut! (tm), the most popular 3D version of the all-too-famous brick-dropping game Tetris (tm).",
"description": "Dropoly is an exciting remake of BlockOut! (tm), the most popular 3D version of the all-too-famous brick-dropping game Tetris (tm).\n\nDropoly allows you to play on a variable depth pit where polycubes drop at increasing speeds. The game has three predefined game modes for quick occasional gamers (Flat Fun, 3D Mania, and Out-of-Control) as well as a full customizable mode for professional puzzlers. You can save your game state and continue later, listen to you iPod music while playing, and Dropoly saves and restores your options automatically.\n\nUsing an innovative control interface and faithfully designed to replicate the original scoring rules of the 80's game, Dropoly will please both hard-core gamers that already know how to play as well as newcomers that never saw a 3D polycube game before.\n\nCan you drop that poly?\n\n--\n\nBlockout, originally licensed to California Dreams, is a registered U.S. trademark of Kadon Enterprises, Inc., a maker of physical polycubes. Tetris is a trademark of The Tetris Company. Inovaworks is not in any way affiliated with any of these two companies.",
"versions": {
"archived": [
{
"version": "1.1",
"url": "https://archive.org/download/dropoly-v-1.1/Dropoly%20%28V1.1%29.ipa"
}
],
"unarchived": []
},
"compatibility": "iPhoneOS 2.2.1 and Later",
"icon": "cdn/app-icon/dropoly.png",
"featured": false,
"categories": [
"Entertainment",
"Puzzle",
"Casual",
"Games"
]
},
{
"id": "dropbox",
"title": "Dropbox",
"developer": "Dropbox Inc",
"featuredDescription": "Dropbox lets you upload, save, and transfer photos and files to the cloud.",
"description": "Dropbox lets you upload, save, and transfer photos and files to the cloud. Backup and sync your pictures, videos, documents, and other files to cloud storage and access them from any device, anywhere. With advanced sharing features, it’s easy to share and send photos or files to family, friends, and co-workers.\n\nFeatures:\n• Automatically upload videos and photos from your camera roll to cloud photo storage - all in the background - for easy video sharing and photo sharing.\n• Access any file in your account - even offline - and preview over 175 different file types with no special software required.\n• Easily send large files by copying and pasting a link you can give to anyone, even if they don’t have a Dropbox account.\n• Scan documents, receipts, IDs, photos, and more using your mobile device and transform them into high-quality PDFs, so you can view and send anywhere.\n• Sync folders on your PC or Mac to Dropbox with computer backup, and recover older versions or restore deleted files with version history and file recovery.\n\nSign up now for your free Dropbox Plus trial. You’ll get 2 TB (2,000 GB) of storage space - that’s enough room to save files from all your linked devices. And with Dropbox Rewind, you can roll back any file, folder, or your entire account, up to 30 days.\n\nExisting Plus customers can upgrade to Dropbox Professional. With 3 TB (3,000 GB), you can store all your stuff - from work projects to personal photos - and have space to spare. You and your clients can comment on most file types without leaving Dropbox. And you can protect your work with a watermark, add shared link controls, or rewind your account up to 180 days.\n\nBefore starting a trial or completing payment, you’ll see the plan price. This amount will be charged to your iTunes account at confirmation of purchase and on renewal and will vary by plan and country. Dropbox subscriptions renew monthly or yearly, depending on your plan. Your account will be charged for renewal 24 hours before the end of your current billing period. To avoid auto-renewal, turn it off within at least 24 hours before the end of the current period.",
"versions": {
"archived": [
{
"version": "1.0",
"url": "https://archive.org/download/com.getdropbox.-dropbox-v-2.0.2-i-os-5.0-clutch-2.0.4/com.getdropbox.Dropbox-%20%28V1.0%29%20%28iOS3.1%29%28Clutch-2.0.4%29.ipa"
},
{
"version": "1.1",
"url": "https://archive.org/download/com.getdropbox.-dropbox-v-2.0.2-i-os-5.0-clutch-2.0.4/Dropbox%20%28V1.1%29%20%28iOS3.1%29.ipa"
},
{
"version": "1.2",
"url": "https://archive.org/download/com.getdropbox.-dropbox-v-2.0.2-i-os-5.0-clutch-2.0.4/com.getdropbox.Dropbox%20%28V1.2%29%20%28iOS3.1%29%28Clutch-2.0.4%29.ipa"
},
{
"version": "1.4",
"url": "https://archive.org/download/com.getdropbox.-dropbox-v-2.0.2-i-os-5.0-clutch-2.0.4/com.getdropbox.Dropbox%20%28V1.4%29%20%28iOS3.1%29%28Clutch-2.0.4%29.ipa"
},
{
"version": "1.4.1",
"url": "https://archive.org/download/com.getdropbox.-dropbox-v-2.0.2-i-os-5.0-clutch-2.0.4/com.getdropbox.Dropbox%20%28V1.4.1%29%20%28iOS3.1%29%28Clutch-2.0.4%29.ipa"
},
{
"version": "1.4.2",
"url": "https://archive.org/download/com.getdropbox.-dropbox-v-2.0.2-i-os-5.0-clutch-2.0.4/Dropbox-%28V1.4.2%29%20%28iOS3.1%29.ipa"
},
{
"version": "1.4.7",
"url": "https://archive.org/download/com.getdropbox.-dropbox-v-2.0.2-i-os-5.0-clutch-2.0.4/com.getdropbox.Dropbox%20%28V1.4.7%29%20%28iOS3.1%29%28Clutch-2.0.4%29.ipa"
},
{
"version": "1.5.3",
"url": "https://archive.org/download/com.getdropbox.-dropbox-v-2.0.2-i-os-5.0-clutch-2.0.4/com.getdropbox.Dropbox%20%28V1.5.3%29%20%28iOS4.0%29%28Clutch-2.0.4%29.ipa"
},
{
"version": "1.5.7",
"url": "https://archive.org/download/com.getdropbox.-dropbox-v-2.0.2-i-os-5.0-clutch-2.0.4/com.getdropbox.Dropbox%20%28V1.5.7%29%20%28iOS4.3%29%28Clutch-2.0.4%29.ipa"
},
{
"version": "2.0.2",
"url": "https://archive.org/download/com.getdropbox.-dropbox-v-2.0.2-i-os-5.0-clutch-2.0.4/com.getdropbox.Dropbox%20%28V2.0.2%29%20%28iOS5.0%29%28Clutch-2.0.4%29.ipa"
},
{
"version": "2.1.4",
"url": "https://archive.org/download/com.getdropbox.-dropbox-v-2.0.2-i-os-5.0-clutch-2.0.4/com.getdropbox.Dropbox%20%28V2.1.4%29%20%28iOS5.0%29%28Clutch-2.0.4%29.ipa"
},
{
"version": "2.2.2",
"url": "https://archive.org/download/com.getdropbox.-dropbox-v-2.0.2-i-os-5.0-clutch-2.0.4/Dropbox-%28com.getdropbox.Dropbox-%20%28V2.2.2%29%20%28iOS5.0%29.ipa"
},
{
"version": "2.3.2",
"url": "https://archive.org/download/com.getdropbox.-dropbox-v-2.0.2-i-os-5.0-clutch-2.0.4/Dropbox-%28com.getdropbox.Dropbox-%20%28V2.3.2%29%20%28iOS5.0%29.ipa"
}
],
"unarchived": [
"1.3.1",
"1.4.6",
"1.5.2",
"3.5.1",
"3.9.1",
"3.9.5"
]
},
"compatibility": "iOS 16.7.10 and Later",
"icon": "cdn/app-icon/dropbox.png",
"featured": false,
"categories": [
"Utilities",
"Productivity"
]
},
{
"id": "toy-story-read-along",
"title": "Toy Story Read-Along",
"developer": "Disney",
"featuredDescription": "TO INFINITY AND BEYOND! Toy Story takes you on the adventure of a lifetime",
"description": "TO INFINITY AND BEYOND! Toy Story takes you on the adventure of a lifetime:\nA fully interactive reading experience packed with Games, Movie Clips, Coloring Pages, Sing-along Tunes, and Surprises on every page. Hear the story read aloud, record your own narration, or explore at your own pace.\n\nMeet Woody, a cowboy doll that comes to life when humans aren’t around. When his owner Andy receives a Buzz Lightyear space ranger for his birthday, Woody and the other toys fear they’ll be replaced. Woody’s plan to get rid of Buzz backfires and he ends up lost outside the world of Andy’s room, with Buzz as his only companion! The toys work together to find their way back to Andy and discover the meaning of true friendship along the way.\n\nFeatures\n* Cinematic, Interactive Read-Along app featuring your favorite characters from the award-winning Toy Story movie.\n* Choose Read to Me mode to hear the story read aloud, or follow the story at your own pace. You can even record your own voice narrating and hear it read back to you!\n* Explore delightful Animations and Surprise features within each page.\n* Get creative with Finger Painting, sing along to Songs from the movie, and play fun interactive Games!\n* Tap to play Sound Effects and character voices from the film.\n* Relive magical moments from the film with Movie Clips throughout!\n* Jump to your favorite part of the story with the Visual Page Index, or resume where you left off.\n* Turn pages manually and move back and forth through the story as you wish!\n\nBefore you download this experience, please consider that this app contains advertising for The Walt Disney Family of Companies.",
"versions": {
"archived": [
{
"version": "1.0",
"url": "https://archive.org/download/toy-story-read-along-v-1.0-i-os-3.2/Toy%20Story%20Read%20Along%20%28V1.0%29%20%28iOS3.2%29.ipa"
},
{
"version": "1.0.1",
"url": "https://archive.org/download/toy-story-read-along-v-1.0-i-os-3.2/Toy%20Story%20Read%20Along%20%28V1.0.1%29%20%28iOS3.2%29.ipa"
},
{
"version": "1.0.2",
"url": "https://archive.org/download/toy-story-read-along-v-1.0-i-os-3.2/Toy%20Story%20Read%20Along%20%28V1.0.2%29%20%28iOS3.2%29.ipa"
},
{
"version": "1.0.3",
"url": "https://archive.org/download/toy-story-read-along-v-1.0-i-os-3.2/Toy%20Story%20Read%20Along%20%28V1.0.3%29%20%28iOS3.2%29.ipa"
},
{
"version": "1.0.4",
"url": "https://archive.org/download/toy-story-read-along-v-1.0-i-os-3.2/Toy%20Story%20Read%20Along%20%28V1.0.4%29%20%28iOS3.2%29.ipa"
},
{
"version": "1.0.5",
"url": "https://archive.org/download/toy-story-read-along-v-1.0-i-os-3.2/Toy%20Story%20Read%20Along%20%28V1.0.5%29%20%28iOS3.2%29.ipa"
},
{
"version": "1.1",
"url": "https://archive.org/download/toy-story-read-along-v-1.0-i-os-3.2/Toy%20Story%20Read%20Along%20%28V1.1%29%20%28iOS3.2%29.ipa"
},
{
"version": "1.2",
"url": "https://archive.org/download/toy-story-read-along-v-1.0-i-os-3.2/Toy%20Story%20Read%20Along%20%28V1.2%29%20%28iOS3.2%29.ipa"
},
{
"version": "1.3",
"url": "https://archive.org/download/toy-story-read-along-v-1.0-i-os-3.2/Toy%20Story%20Read%20Along%20%28V1.3%29%20%28iOS3.2%29.ipa"
},
{
"version": "1.4",
"url": "https://archive.org/download/toy-story-read-along-v-1.0-i-os-3.2/Toy%20Story%20Read%20Along%20%28V1.4%29%20%28iOS5.1%29.ipa"
}
],
"unarchived": []
},
"compatibility": "iOS 5.1 and Later",
"icon": "cdn/app-icon/toy-story-read-along.png",
"featured": false,
"categories": [
"Entertainment",
"Books"
]
},
{
"id": "facebook",
"title": "Facebook",
"developer": "Meta Platforms Inc",
"featuredDescription": "Where real people propel your curiosity.",
"description": "Where real people propel your curiosity. Whether you’re thrifting gear, showing a reel to that group who gets it, or sharing laughs over fun images reimagined by AI, Facebook helps you make things happen like no other social network.\n\nExplore and expand your interests:\n* Ask Meta AI to search topics that matter to you, and get instant results more interactive than just text\n* Shop Marketplace for deals and hidden gems to nurture your hobbies\n* Personalize your Feed to see more of what you like, less of what you don’t\n* Dive into reels and videos for how-to’s or quick entertainment\n\nConnect with people and communities:\n* Join groups to learn tips from real people who’ve been there, done that\n* Turn on sharing to Instagram to save time\n* Privately message relatable posts that only your BFF will get or that Reels trend everyone’s talking about\n\nShare your world:\n* Use generative AI to delight friends with custom images, or just get help writing posts\n* Customize your profile to choose how you show up and who sees your posts\n* Effortlessly create reels from trending templates, or showcase your creativity with a full suite of editing tools\n* Capture moments on the fly with stories\n\nSome features may not be available in your country or region.\n\nTerms & Policies: https://www.facebook.com/policies_center\nPrivacy Policy: https://www.facebook.com/privacy\n\nLearn how we're working to help keep our communities safe across Meta technologies at the Meta Safety Center: https://about.meta.com/actions/safety",
"versions": {
"archived": [
{
"version": "1.0",
"url": "https://archive.org/download/com.facebook.facebook-v17.0-ios7.0-clutch-2.0.4/Facebook-%28com.facebook.Facebook%29%28V1.0%29%20%28iOS_2.0%29.ipa"
},
{