-
Notifications
You must be signed in to change notification settings - Fork 17
/
quarksource++.json
1043 lines (1043 loc) · 51.5 KB
/
quarksource++.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": "Quark Source++",
"identifier": "com.quarksources.quarksource++",
"sourceURL": "https://quarksources.github.io/quarksource%2B%2B.json",
"sourceIconURL": "https://quarksources.github.io/assets/ElementQ.png",
"apps": [
{
"name": "Cercube",
"bundleIdentifier": "com.google.ios.youtube",
"developerName": "Majd Alfhaily",
"subtitle": "An elevated YouTube experience.",
"version": "15.49.4",
"versionDate": "2021-02-18",
"versionDescription": "Cercube v5.2.12\n\n* No longer has VP9 decoding\n* But Picture in Picture is fixed",
"downloadURL": "https://github.com/QuarkSources/quarksources.github.io/releases/download/v1.0/Cercube.ipa",
"localizedDescription": "YouTube is one of the best and most popular video-sharing platform available on the web. It features a range of videos from funny pranks to reviews, gaming content, and daily vlogs by popular influencers.\n\nYouTube also offers an app for iOS which provides a more smooth and enjoyable experience watching videos on your iPhone. Unfortunately, the app lacks a lot of essential features.\n\nCercube is a third-party app for YouTube that brings tons of amazing new features and functionality. Some of these are:\n\n• Download and save videos up to 4k resolution\n• Save videos as audio only\n• View, manage and share all your downloads in Cercube's download manager\n• Block ads\n• Share downloaded videos with other devices via AirDrop\n• Background playback for streamed and downloaded videos\n• Import downloads to Music or Videos\n• Play YouTube videos using Picture-in-Picture mode\n• Downloaded videos are displayed within a beautifully crafted downloads manager that shows all the available information\n• Choose the default tab to open when launching YouTube\n• Stream videos in HD on cellular network\n• Auto-replay videos\n• Hide floating upload button\n• Hide the Trending tab\n• Rewind or forward videos\n• Cercube options are configurable from within YouTube settings\n• Play in high quality on Mobile Data\n\nAnd many more features. All-in-all, Cercube takes your YouTube experience to a whole new level with all the innovative features that it provides.",
"iconURL": "https://i.imgur.com/EUJ4C85.png",
"tintColor": "#ff0000",
"size": 98201336,
"permissions": [
{
"type": "photos",
"usageDescription": "This lets you upload videos you've already created."
},
{
"type": "camera",
"usageDescription": "This lets you create videos using the app."
},
{
"type": "network",
"usageDescription": "Access to your network allows YouTube to discover and connect to devices such as your TV."
},
{
"type": "contacts",
"usageDescription": "Your contacts will be sent to YouTube servers to help you find friends to share videos with."
},
{
"type": "microphone",
"usageDescription": "This lets you include audio with your videos and search using your voice."
},
{
"type": "location",
"usageDescription": "Makes it easier for you to attach location information to your videos and live streams and allows for features such as improved recommendations and ads."
}
],
"screenshotURLs": [
"https://i.imgur.com/8nv9ytA.png",
"https://i.imgur.com/3xaq3TK.png",
"https://i.imgur.com/Rsq2Tb7.png",
"https://i.imgur.com/ol8180M.png"
]
},
{
"name": "EhPanda",
"bundleIdentifier": "zeng.EhPanda",
"developerName": "Araki Tatsuzou",
"subtitle": "An unofficial E-Hentai App for iOS",
"version": "1.0.3",
"versionDate": "2021-07-14",
"versionDescription": "* Update issue templates.\n* Bugfix for iOS 15 beta 3 crashes",
"downloadURL": "https://github.com/QuarkSources/quarksources.github.io/releases/download/v1.0/Cercube.ipa",
"localizedDescription": "EhPanda allows you to browse almost every category of E-Hentai that exists. It provides valuable details and information about each series using an intuitive design modeled after the App Store. You can also participate in the ongoing conversation and leave comments, replies, or reactions!\n\nMore Features include:\n\n* The ability to download via your own Hath client.\n* In-app torrenting to save the best ones\n* Advanced, customizable filters\n* Various settings to access optional features, modify the app icon, and more!",
"iconURL": "https://i.imgur.com/gzJjtF3.png",
"tintColor": "#60a696",
"size": 2772780,
"permissions": [
{
"type": "faceid",
"usageDescription": "We need this permission to provide Face ID option while unlocking the App."
}
],
"screenshotURLs": [
"https://i.imgur.com/p6jIy2a.png",
"https://i.imgur.com/JfGI97l.png",
"https://i.imgur.com/bx9Qw1T.png",
"https://i.imgur.com/jvWA3kH.png",
"https://i.imgur.com/ND3pnAe.png",
"https://i.imgur.com/YgMVTrE.png",
"https://i.imgur.com/2F6OE8W.png"
]
},
{
"name": "Crunchyroll++",
"bundleIdentifier": "com.crunchyroll.iphone",
"developerName": "unlimapps",
"subtitle": "The Ad-Free Anime you've been looking for.",
"version": "3.5.1",
"versionDate": "2019-10-01",
"versionDescription": "Optimized for iOS 13.",
"downloadURL": "https://github.com/QuarkSources/quarksources.github.io/releases/download/v1.0/Crunchyroll++.ipa",
"localizedDescription": "- No ads\n- New episodes one hour after airing in Japan\n- The highest watching quality possible",
"iconURL": "https://i.imgur.com/qM7e1Ey.png",
"tintColor": "#f47521",
"size": 11688173,
"permissions": [
{
"type": "camera",
"usageDescription": "Crunchyroll would like to access camera."
},
{
"type": "contacts",
"usageDescription": "Crunchyroll would like to access contacts."
},
{
"type": "microphone",
"usageDescription": "Crunchyroll would like to access microphone."
},
{
"type": "bluetooth",
"usageDescription": "This app uses Bluetooth to connect to and share information with accessories and other Apple devices for the purposes of video playback."
},
{
"type": "location",
"usageDescription": "Crunchyroll would like to access location."
},
{
"type": "calendars",
"usageDescription": "Crunchyroll would like to create calendar events."
}
],
"screenshotURLs": [
"https://i.imgur.com/ss27Uf3.png",
"https://i.imgur.com/AxhO3kI.png",
"https://i.imgur.com/KdmaxEZ.png",
"https://i.imgur.com/XMO94gp.png",
"https://i.imgur.com/qBeM1ri.png"
]
},
{
"name": "Duolingo++",
"bundleIdentifier": "com.duolingo.DuolingoMobile",
"developerName": "unlimapps",
"subtitle": "Learn new languages like a pro.",
"version": "6.2.0",
"versionDate": "2019-01-22",
"versionDescription": "Bug fixes and performance improvements.",
"downloadURL": "https://github.com/QuarkSources/quarksources.github.io/releases/download/v1.0/Duolingo++.ipa",
"localizedDescription": "Get all the benefits of Duolingo Plus:\n\n- Ad-free learning experience\n- Offline learning\n- Unlimited hearts\n- Unlimited skill test-outs\n- Monthly streak repair",
"iconURL": "https://i.imgur.com/xTmgUgF.png",
"tintColor": "#78c800",
"size": 92016431,
"permissions": [
{
"type": "camera",
"usageDescription": "Take a photo to use for your Duolingo profile."
},
{
"type": "photos",
"usageDescription": "In order to save screenshots of exercises and to find an existing photo to use for your Duolingo profile."
},
{
"type": "microphone",
"usageDescription": "Speaking is essential to language learning."
},
{
"type": "speech-recognition",
"usageDescription": "Speaking is essential to language learning."
}
],
"screenshotURLs": [
"https://i.imgur.com/WvspTMZ.png",
"https://i.imgur.com/N9TZwA4.png",
"https://i.imgur.com/BlQMDja.png",
"https://i.imgur.com/7c1QYMY.png",
"https://i.imgur.com/7NCRo40.png",
"https://i.imgur.com/KYORKQH.png"
]
},
{
"name": "Twitch++",
"bundleIdentifier": "tv.twitch",
"developerName": "Michael Lema",
"subtitle": "Twitch Fox allows you to stream ad-free.",
"version": "9.3.1",
"versionDate": "2020-07-15",
"versionDescription": "Twitch Fox v1.1\n\nBug fixes, stability fixes, and app optimizations.",
"downloadURL": "https://github.com/QuarkSources/quarksources.github.io/releases/download/v1.0/Twitch++.ipa",
"localizedDescription": "With Twitch Fox you get ad-free streams, the ability to download clips, and plenty more tweak options in Twitch's settings. Experience the games you love like never before! Watch live streams and chat with devoted gamers around the world.\n\nCatch the action as it happens! Access all the content you care about, from frenetic Overwatch multiplayer matches to soothing Bob Ross art demos. With millions of unique streamers every day playing everything under the sun, if it’s worth watching, it’s live on Twitch right now.\n\nTwitch: TOP 3 FEATURES\n1. Watch live videos of your favorite games, from blockbuster titles like Minecraft and League of Legends to little-known indie gems.\n2. Connect with other gamers in real time with full-featured live chat.\n3. Go live with a touch and share your passion with the world!\n\nBe a part of the leading social gaming platform on iPhone and iPad! With esports events, art, cooking, music and much more on demand, there’s something for everyone on Twitch.\n\n+ Watch interactive live shows from the likes of Sony, Microsoft, Blizzard and Riot Games.\n+ Tune into unique programming, from music festival live streams to exclusive video game events.\n+ Discover new content with ease thanks to simple and intuitive navigation.\n+ Switch to Dark Mode for those late night viewing sessions.\n\nJoin the millions of hardcore and casual gamers who have found a place to connect over the games they love. Take your passion to the next level with Twitch!",
"iconURL": "https://i.imgur.com/pcqVs0i.png",
"tintColor": "#9146ff",
"size": 36594109,
"permissions": [
{
"type": "photos",
"usageDescription": "Twitch needs permission to write to your photo library in order to save images and change your profile image."
},
{
"type": "camera",
"usageDescription": "Twitch needs permission to access the camera on this device to stream live video and change your profile image."
},
{
"type": "microphone",
"usageDescription": "Twitch needs permission to access the microphone on this device to stream live video."
}
],
"screenshotURLs": [
"https://i.imgur.com/GWNj5HB.png",
"https://i.imgur.com/LZ9pnCc.png",
"https://i.imgur.com/mPF1OtD.png",
"https://i.imgur.com/QE7op8J.png",
"https://i.imgur.com/3dVqhBv.png",
"https://i.imgur.com/TjU703V.png"
]
},
{
"name": "Deezer++",
"bundleIdentifier": "com.deezer.Deezer",
"developerName": "julioverne",
"subtitle": "Mix your music your way.",
"version": "7.1.1",
"versionDate": "2020-10-15",
"versionDescription": "Deezerlife v0.5\n\nDowngraded to v7 of Deezer since v8 crashes on login.",
"downloadURL": "https://github.com/QuarkSources/quarksources.github.io/releases/download/v1.0/Deezer++.ipa",
"localizedDescription": "Your life deserves its own soundtrack. With 56 million tracks, playlists and podcasts plus personalized recommendations just for you, Deezer is your music companion. A music player that always gives you the songs you love, and helps you discover your next favorites. You bring the passion, we bring the music.\n\nEnjoy best-in-class features with the Deezer music player:\n\n• Stream the biggest global hits\n• 56 million songs to discover and enjoy\n• Lean back and find new tracks with Shuffle Mode\n• Get personalized recommendations and explore new music styles with Flow\n• Listen to any playlist you want or create your own\n• Add the tracks you love to your music collection in a single tap with Favorites\n• Organise your new music by artist or genre\n• Share your personal playlists and favorite tracks with others\n• Discover podcasts, radio stations, and audio channels\n\nWhat you get for free with Deezerlife v0.5:\n\n• No ads\n• Offline Mode: download your favorite tracks or podcasts and listen to offline music anywhere\n• Unlimited skips\n• No song shuffling\n• Superior Sound Quality (320 kBps)\n• Music player is compatible with Amazon Alexa and connected devices",
"iconURL": "https://i.imgur.com/zGqFxJz.png",
"tintColor": "#252d36",
"size": 99126030,
"permissions": [
{
"type": "photos",
"usageDescription": "Deezer needs to access your photos."
},
{
"type": "camera",
"usageDescription": "Deezer needs to access your camera."
},
{
"type": "microphone",
"usageDescription": "Deezer needs microphone access to use this feature."
},
{
"type": "calendar",
"usageDescription": "Deezer would like to create a calendar event."
},
{
"type": "bluetooth",
"usageDescription": "Deezer needs Bluetooth access to communicate with Google Assistant devices."
},
{
"type": "location",
"usageDescription": "This will be used to improve music recommendations."
},
{
"type": "background-audio",
"usageDescription": "This will be used to play music in the background."
}
],
"screenshotURLs": [
"https://i.imgur.com/iox1WHX.png",
"https://i.imgur.com/chYRMOg.png",
"https://i.imgur.com/2NUi4lD.png",
"https://i.imgur.com/8fUSZuW.png",
"https://i.imgur.com/9uztFPu.png",
"https://i.imgur.com/ZDvx4v9.png",
"https://i.imgur.com/pjGTCg6.png",
"https://i.imgur.com/gbqzsX2.png",
"https://i.imgur.com/uUYBjAM.png"
]
},
{
"name": "Spotify++",
"bundleIdentifier": "com.spotify.client",
"developerName": "julioverne",
"subtitle": "Spotify with free premium.",
"version": "8.6.54",
"versionDate": "2021-11-18",
"versionDescription": "Should finally work on iOS 15+. Added Spos 1.7.",
"downloadURL": "https://github.com/QuarkSources/quarksources.github.io/releases/download/v1.0/Spotify%2B%2B.ipa",
"localizedDescription": "Spotify++ essentially activates spotify premium on your device with one exception: No downloads.\n\nSo what does Spotify++ change?\n\n• All kinds of ads removed\n• Unlimited skips\n• Play any song or album\n• Enable extreme streaming quality\n• No forced shuffle\n• Import songs from the Music app",
"iconURL": "https://i.imgur.com/on9H3Vv.png",
"tintColor": "#1ed760",
"size": 50510887,
"permissions": [
{
"type": "camera",
"usageDescription": "This lets you scan Spotify Codes."
},
{
"type": "photos",
"usageDescription": "This lets you save and select images to and from your Photo Library."
},
{
"type": "music",
"usageDescription": "This will let you play your imported music on Spotify."
},
{
"type": "motion",
"usageDescription": "Used to control your tempo for Spotify Running."
},
{
"type": "microphone",
"usageDescription": "This lets you control Spotify using your voice."
},
{
"type": "bluetooth",
"usageDescription": "This lets you use Spotify with external accessories."
},
{
"type": "network",
"usageDescription": "This lets you listen on different devices. Spotify will also get access to local audio files."
},
{
"type": "faceid",
"usageDescription": "This lets you set access restrictions using Face ID."
}
],
"screenshotURLs": [
"https://i.imgur.com/t75Ef2i.png",
"https://i.imgur.com/tN2HRrN.png",
"https://i.imgur.com/7niziJz.png",
"https://i.imgur.com/Gaj1CMM.png",
"https://i.imgur.com/r31e5Wu.png",
"https://i.imgur.com/JABe5A7.png",
"https://i.imgur.com/3hUWRcU.png",
"https://i.imgur.com/EC0ExwD.png"
]
},
{
"name": "SpotUlt++",
"bundleIdentifier": "syto203.spotultpp",
"developerName": "julioverne & syto203",
"subtitle": "Spotify with free premium and more.",
"version": "8.5.67",
"versionDate": "2020-08-10",
"versionDescription": "Now with the complete Spotify redesign.",
"downloadURL": "https://github.com/QuarkSources/quarksources.github.io/releases/download/v1.0/SpotUlt%2B%2B.ipa",
"localizedDescription": "SpotUlt++ essentially activates spotify premium on your device with one exception: No downloads.\n\nSo what does SpotUlt++ change?\n\n• All kinds of ads removed\n• Unlimited skips\n• Play any song or album\n• Enable extreme streaming quality\n• No forced shuffle\n• Import songs from the Music app\n• Full lyrics available in app",
"iconURL": "https://i.imgur.com/abs8oLF.png",
"tintColor": "#f3343c",
"size": 44770408,
"permissions": [
{
"type": "camera",
"usageDescription": "This lets you scan Spotify Codes."
},
{
"type": "photos",
"usageDescription": "This lets you save and select images to and from your Photo Library."
},
{
"type": "motion",
"usageDescription": "Used to control your tempo for Spotify Running."
},
{
"type": "microphone",
"usageDescription": "This lets you control Spotify using your voice."
},
{
"type": "bluetooth",
"usageDescription": "This lets you use Spotify with external accessories."
},
{
"type": "faceid",
"usageDescription": "This lets you set access restrictions using Face ID."
},
{
"type": "location",
"usageDescription": "This lets you prepopulate the SSID field with the currently connected network."
},
{
"type": "music",
"usageDescription": "This will let you play your imported music on Spotify."
},
{
"type": "background-audio",
"usageDescription": "This will let you play your music in the background."
}
],
"screenshotURLs": [
"https://i.imgur.com/t75Ef2i.png",
"https://i.imgur.com/tN2HRrN.png",
"https://i.imgur.com/7niziJz.png",
"https://i.imgur.com/Gaj1CMM.png",
"https://i.imgur.com/r31e5Wu.png",
"https://i.imgur.com/JABe5A7.png",
"https://i.imgur.com/3hUWRcU.png",
"https://i.imgur.com/EC0ExwD.png"
]
},
{
"name": "Twitter++",
"bundleIdentifier": "com.atebits.Tweetie2",
"developerName": "unlimapps",
"subtitle": "Clean, ad-free Twitter.",
"version": "7.47",
"versionDate": "2019-04-19T08:46:00-07:00",
"versionDescription": "Bug fixes.",
"downloadURL": "https://github.com/QuarkSources/quarksources.github.io/releases/download/v1.0/Twitter%2B%2B.ipa",
"localizedDescription": "Adds new features to the iOS Twitter app:\n\n• Share images and links from tweets by long pressing on them\n• Share tweets to third-party apps with a tap and hold gesture\n• Save video and GIFs to your device with tap and hold gesture\n• Download YouTube videos from Twitter to your device\n• Set the default browser to open when a link is tapped\n• Show the keyboard on Compose instead of media screen\n• Automatic Long Tweet Creation - For tweets that are over 140 Chars, Twitter++ allows you to automatically post tweet as an image or using pastebin.\n• Displays a confirmation when favoriting a Tweet\n• Enable full-screen \n• Video tweets of users who have blocked you",
"iconURL": "https://i.imgur.com/VGlfZdn.png",
"tintColor": "#1fa0f3",
"size": 125089202,
"permissions": [
{
"type": "photos",
"usageDescription": "Enables Twitter to access photos from your library and add them to your tweet."
},
{
"type": "camera",
"usageDescription": "Enables Twitter to take photos and videos and add them to your tweet."
},
{
"type": "music",
"usageDescription": "Enables twitter to share music."
},
{
"type": "contacts",
"usageDescription": "Enables Twitter to search your address book for people you may know on Twitter."
},
{
"type": "microphone",
"usageDescription": "Enables Twitter to take videos with audio and add them to your tweet."
},
{
"type": "location",
"usageDescription": "Enables Twitter to customize your experience based on your current location."
}
],
"screenshotURLs": [
"https://i.imgur.com/pQOh0Qt.png",
"https://i.imgur.com/H8CmaVX.png",
"https://i.imgur.com/OD82oKg.png",
"https://i.imgur.com/fh26Mfc.png",
"https://i.imgur.com/TWRVWSY.png"
]
},
{
"name": "TweetDeck",
"bundleIdentifier": "com.MasonD3V.Tweetdeck",
"developerName": "Iain Dodsworth",
"subtitle": "The full power of desktop Twitter.",
"version": "2.1",
"versionDate": "2017-10-07",
"versionDescription": "Bug fixes.",
"downloadURL": "https://github.com/QuarkSources/quarksources.github.io/releases/download/v1.0/TweetDeck.ipa",
"localizedDescription": "Adds new features to your iOS Twitter experience!",
"iconURL": "https://i.imgur.com/I6BuRHL.png",
"tintColor": "#1fa0f3",
"size": 28815708,
"permissions": [
{
"type": "photos",
"usageDescription": "Allow access to Photo Library to allow photo uploading."
},
{
"type": "camera",
"usageDescription": "Allow access to Camera to allow photo uploading."
}
],
"screenshotURLs": [
"https://i.imgur.com/i3iIS6F.png",
"https://i.imgur.com/WkPlu8E.png"
]
},
{
"name": "Reddit++",
"bundleIdentifier": "syto203.reddit.pp",
"developerName": "syto203",
"subtitle": "Ad-free, customizable Reddit.",
"version": "2020.12.0",
"versionDate": "2020-01-12",
"versionDescription": "Bug fixes.",
"downloadURL": "https://github.com/QuarkSources/quarksources.github.io/releases/download/v1.0/Reddit%2B%2B.ipa",
"localizedDescription": "The Reddit you know and love but with all the premium features you have always wanted.\n\n• Absolutely no ads.\n• Access to r/lounge\n• And more!",
"iconURL": "https://i.imgur.com/1YJO4aW.png",
"tintColor": "#ff4500",
"size": 55538241,
"permissions": [
{
"type": "photos",
"usageDescription": "Reddit needs permission to access your photo library to make new image, video, and gif posts."
},
{
"type": "camera",
"usageDescription": "Reddit needs permission to access your camera to make new posts."
},
{
"type": "calendars",
"usageDescription": "Reddit needs permission to access your calendar for the calendar widget on your subreddit."
},
{
"type": "contacts",
"usageDescription": "Reddit needs permission to access your contacts to allow you to chat to your friends!"
},
{
"type": "microphone",
"usageDescription": "Reddit needs permission to access your microphone to make new posts on your behalf."
},
{
"type": "location",
"usageDescription": "Reddit needs permission to access your location to help provide the best content for where you are."
}
],
"screenshotURLs": [
"https://i.imgur.com/KWMTEJj.png",
"https://i.imgur.com/qHnOKuC.png",
"https://i.imgur.com/zg5knuy.png",
"https://i.imgur.com/XVC7rfu.png",
"https://i.imgur.com/H4xxQdt.png",
"https://i.imgur.com/4b7Tm9j.png"
]
},
{
"name": "Paperback",
"bundleIdentifier": "com.FaizanDurrani.Paperback",
"developerName": "Faizan Durrani",
"subtitle": "An ad-free manga reader for iOS.",
"version": "0.2.1",
"versionDate": "2020-04-21",
"versionDescription": "First public release!\n\nChangelog\n• Tag and Advanced search are not limited 50 manga anymore\n• Fixed refresh button in follows not doing anything\n• Removed Fancy Paged reader\n\nKnown Issues\n• Crashes upon queueing download, reinstall app to fix it\n• Sorting by Recently Updated in Follows view doesn't respect user's selected languages, this cannot be fixed, it's how MD works",
"downloadURL": "https://github.com/QuarkSources/quarksources.github.io/releases/download/v1.0/Paperback.ipa",
"localizedDescription": "Paperback is a fully ad-free manga reader for iOS 13 and iPadOS 13.4 and up.\n\niPad support\n• Friendly layout with a robust double spread chapter reader for iPad.\n\nMangaDex integration\n• Paperback will sync your mangas and settings to and from MangaDex.\n\nNo advertisements\n• Unlike other not-to-be-named apps and websites, this is a fully ad-free experience.\n\nIf you enjoy the app, please support the developer on Patreon to get access to the beta version of the app: https://www.patreon.com/FaizanDurrani",
"iconURL": "https://i.imgur.com/q8HqXb6.png",
"tintColor": "#202020",
"size": 23097297,
"screenshotURLs": [
"https://i.imgur.com/RfnknpJ.png",
"https://i.imgur.com/p6q0X1l.png",
"https://i.imgur.com/NLPzAxI.png",
"https://i.imgur.com/kZtdoxe.png",
"https://i.imgur.com/t42F34N.png",
"https://i.imgur.com/0top4pi.png",
"https://i.imgur.com/0SGoRXk.png"
]
},
{
"name": "Paperback Beta",
"bundleIdentifier": "com.FaizanDurrani.PaperbackBeta",
"developerName": "Faizan Durrani",
"subtitle": "A beta manga reader for Patrons only.",
"version": "0.3.0",
"versionDate": "2020-05-13",
"versionDescription": "* Added chapter markers to backups, making a backup now also exports your chapter progress\n* Added chapter page progress saving\n* Added rate limiting for sources to avoid getting ip-banned\n* Fixed a bug where switching from longstrip to paged reader would cause a black screen\n* Fixed Downloads sometimes getting stuck\n* Fixed a bug where the reader would sometimes get stuck and not let you continue until you go back to the previous page first\n* Fixed a bug with the landscape reader orientation on iPad sometimes getting stuck when a double spread page appeared\n* Removed last updated and update count from sort list until Notifications are implemented\n* Added a method in sources that allows the source to modify almost all outbound requests from the app",
"downloadURL": "https://github.com/QuarkSources/quarksources.github.io/releases/download/v1.0/Paperback-Beta.ipa",
"localizedDescription": "Paperback is a fully ad-free manga reader for iOS 13 and iPadOS 13.4 and up.\n\niPad support\n• Friendly layout with a robust double spread chapter reader for iPad.\n\nMangaDex integration\n• Paperback will sync your mangas and settings to and from MangaDex.\n\nNo advertisements\n• Unlike other not-to-be-named apps and websites, this is a fully ad-free experience.\n\nIf you enjoy the app, please support the developer on Patreon to get access to the beta version of the app: https://www.patreon.com/FaizanDurrani",
"iconURL": "https://i.imgur.com/uVN9JpL.png",
"tintColor": "#202020",
"size": 18817304,
"screenshotURLs": [
"https://i.imgur.com/RfnknpJ.png",
"https://i.imgur.com/p6q0X1l.png",
"https://i.imgur.com/NLPzAxI.png",
"https://i.imgur.com/kZtdoxe.png",
"https://i.imgur.com/t42F34N.png",
"https://i.imgur.com/0top4pi.png",
"https://i.imgur.com/0SGoRXk.png"
]
},
{
"name": "PopcornTimeTV",
"bundleIdentifier": "com.hotdog.popcorntime81.ios",
"developerName": "PopcornTimeTV",
"subtitle": "Free TV Shows and Movies for iOS, with Butter!",
"version": "3.2",
"versionDate": "2020-04-14",
"versionDescription": "This update will require you to uninstall the current PopcornTime and then reinstall.\n\nFixed unknown error among other updates and changes.",
"downloadURL": "https://github.com/QuarkSources/quarksources.github.io/releases/download/v1.0/PopcornTimeTV.ipa",
"localizedDescription": "PopcornTimeTV uses online torrents to find and stream brand-new movies and TV shows for free.\n\nUseful features include:\n\n• Finds the best torrents automatically\n• Awesome catalog of movies and shows - if it's out there, you can find it\n• No restrictions, subscriptions or ads\n• The ability to select the quality and subtitles\n• Instant streaming or downloads\n• Trakt.tv scrobbling and watchlist syncing\n\nIf you want to know more about how PopcornTime works, visit the FAQ: https://popcorntime.app/faq",
"iconURL": "https://i.imgur.com/c7BzAgE.png",
"tintColor": "#495bb9",
"size": 37879565,
"permissions": [
{
"type": "bluetooth",
"usageDescription": "This lets you use PopcornTime with external devices."
}
],
"screenshotURLs": [
"https://i.imgur.com/WhH2WUe.png",
"https://i.imgur.com/hlmpbth.png",
"https://i.imgur.com/vHyZY1o.png",
"https://i.imgur.com/9zCu89L.png"
]
},
{
"name": "Popcorn",
"bundleIdentifier": "com.antique.Popcorn",
"developerName": "Antique",
"subtitle": "The new and improved successor to PopcornTime!",
"version": "3",
"versionDate": "2021-06-29",
"versionDescription": "Updated to v3.4\nWhat's new?\n\n1. Reviews\n- Reviews are now available for all users.\n- Reviews require a Popcorn account and username.\n\n2. Accounts\n- Improved Get Started, Reconnect and Account.\n- Account options are now available by tapping your email.\n- Users can now assign a username.\n- Usernames are permanent. Ensure you set it correctly.\n\n3. Servers\n- Fixed an issue which caused Popcorn to fail while opening if a server",
"downloadURL": "https://github.com/QuarkSources/quarksources.github.io/releases/download/v1.0/Popcorn.ipa",
"localizedDescription": "Popcorn uses online torrents to find and stream brand-new movies and TV shows for free.\n\nUseful features include:\n\n• Finds the best torrents automatically\n• Awesome catalog of movies and shows - if it's out there, you can find it\n• No restrictions, subscriptions or ads\n• The ability to select the quality and subtitles\n• Instant streaming or downloads\n• Trakt.tv scrobbling and watchlist syncing\n\nIf you want to know more about how PopcornTime works, visit the FAQ: https://popcorntime.app/faq",
"iconURL": "https://i.imgur.com/nylwVXe.png",
"tintColor": "#495bb9",
"size": 52848507,
"permissions": [
{
"type": "background-audio",
"usageDescription": "This lets you use Popcorn audio in the background."
}
],
"screenshotURLs": [
"https://i.imgur.com/DO8SanA.png",
"https://i.imgur.com/YdHBjWL.png",
"https://i.imgur.com/4vQu8JA.png"
]
},
{
"name": "MediaBox HD",
"bundleIdentifier": "mediaboxhd.event.2",
"developerName": "MediaBox Team",
"subtitle": "The best free streaming app for iOS.",
"version": "2.4.9.2",
"versionDate": "2020-02-06",
"versionDescription": "More subtitles now supported.",
"downloadURL": "https://github.com/QuarkSources/quarksources.github.io/releases/download/v1.0/MediaBox.ipa",
"localizedDescription": "The best movie and TV streaming app for iOS.\n\n• Uses direct streaming only, No Torrents (peer to peer / P2P)\n• Media Box HD is constantly searching all over the web for the best stream from the most relevant sites.\n\nThe Best Features\n\n• Discover popular Movies/Shows.\n• Supports Chromecast, Roku, FireTV, Smart-TV, Wifi-Sharing.\n• Trakt.tv sync\n• Real-Debrid supported\n• Offline Watching. Download in the background\n• Files app support\n• VLC-Player support\n• Supports subtitles (from these sources: opensubtitles; popcorn-time; subscene; mediaboxhd)\n• Customizable themes\n\nThe Best Service\n\n• You can request Movies/Shows, Subtitles.\n• You can help improve the app by giving us feedback about any problems you're having, and we will update the app ASAP",
"iconURL": "https://i.imgur.com/buZHkx2.png",
"tintColor": "#1e1e1e",
"size": 57384853,
"permissions": [
{
"type": "photos",
"usageDescription": "This app requires access to the photo library."
},
{
"type": "camera",
"usageDescription": "Some ad content may access camera to take picture."
},
{
"type": "bluetooth",
"usageDescription": "The app would like to use bluetooth."
},
{
"type": "microphone",
"usageDescription": "The app would like to use microphone."
},
{
"type": "calendars",
"usageDescription": "Some ad content may create a calendar event."
},
{
"type": "motion",
"usageDescription": "Some ad content may require access to accelerometer for interactive ad experience."
},
{
"type": "background-fetch",
"usageDescription": "The app would like to fetch in the background."
},
{
"type": "background-audio",
"usageDescription": "The app would like to play audio in the background."
}
],
"screenshotURLs": [
"https://i.imgur.com/dJqSRlb.png",
"https://i.imgur.com/otRiR3J.png",
"https://i.imgur.com/pG3Mdv2.png",
"https://i.imgur.com/0pNIcOD.png",
"https://i.imgur.com/HMYs5DV.png",
"https://i.imgur.com/I1zxbBV.png",
"https://i.imgur.com/VEv0sOb.png"
]
},
{
"name": "ComicBox",
"bundleIdentifier": "comicreader.net.ios",
"developerName": "MediaBox Team",
"subtitle": "A free comic/manga reader app for iOS.",
"version": "1.3.3",
"versionDate": "2019-05-30",
"versionDescription": "Small bug fixes and various UI improvements.",
"downloadURL": "https://github.com/QuarkSources/quarksources.github.io/releases/download/v1.0/ComicBox.ipa",
"localizedDescription": "ComicBox is a free reader for comics, manga, and more.\n\nHuge Library\n\n• Read thousands of comic/manga in many different languages: English, Spanish, French, etc. from many popular sources\n\nBest Features\n\n• Discover popular comic/manga.\n• The Best Viewer. Enjoy a seamless reading experience & customize it any way you want.\n• Offline Reading. Download any manga back to your device & read later without constant Internet connection\n• Changeable themes\n• ... and many other wonderful delights you will discover in the app.\n\nBest Service\n\n• You can request Comic/Manga.\n• You can help improve the app by giving us feedback about any problems you're having, and we will update the app",
"iconURL": "https://i.imgur.com/qaFkT1Q.png",
"tintColor": "#012839",
"size": 158480864,
"permissions": [
{
"type": "photos",
"usageDescription": "This app requires access to the photo library."
},
{
"type": "camera",
"usageDescription": "Some ad content may access camera to take a picture."
},
{
"type": "bluetooth",
"usageDescription": "The app would like to use bluetooth."
},
{
"type": "microphone",
"usageDescription": "The app would like to use microphone."
},
{
"type": "calendars",
"usageDescription": "Some ad content may create a calendar event."
},
{
"type": "motion",
"usageDescription": "Some ad content may require access to accelerometer for an interactive ad experience."
},
{
"type": "background-fetch",
"usageDescription": "The app would like to fetch in the background to give notifications."
}
],
"screenshotURLs": [
"https://i.imgur.com/CjfUYSc.png",
"https://i.imgur.com/ucxVVjW.png",
"https://i.imgur.com/JR6AVFd.png"
]
},
{
"name": "Channels",
"bundleIdentifier": "com.channelsapp.channels",
"developerName": "Furkan Simsir",
"subtitle": "Watch live TV & events for free with Channels.",
"version": "1.8.0",
"versionDate": "2020-03-24T00:00:00-00:00",
"versionDescription": "• Completely redesigned Events tab\n• Most streams will open in the default iOS player instead of in the browser\n• 'Open in VLC' support (VLC app has Chromecast)\n• Reduced app size by 85%! (168 MB -> 22 MB)\n• Smoother loading experience\n• Cleanup and bugfixes",
"downloadURL": "https://github.com/QuarkSources/quarksources.github.io/releases/download/v1.0/Channels.ipa",
"localizedDescription": "Channels allows you to watch live TV & sport events for free on your iPhone, iPad or iPod Touch.\n\nFeatures:\n\n• Daily live events for NBA, NFL, Soccer, UFC and more\n• Categorized live TV channels\n• Daily updated Movies & TV Shows\n\n Follow @channelstheapp on Twitter for more information.",
"iconURL": "https://i.imgur.com/qixCmDA.png",
"tintColor": "#0093e9",
"size": 9090644,
"permissions": [
{
"type": "bluetooth",
"usageDescription": "We need bluetooth to connect to nearby mirroring devices."
},
{
"type": "background-audio",
"usageDescription": "We need to run audio in the background."
}
],
"screenshotURLs": [
"https://i.imgur.com/VWcVoUR.png",
"https://i.imgur.com/lqK844i.png",
"https://i.imgur.com/djgm5ZQ.png",
"https://i.imgur.com/Y7mO6oI.png"
]
},
{
"name": "Instagram Rocket",
"bundleIdentifier": "com.burbn.instagram",
"developerName": "Majd Alfhaily",
"subtitle": "An app crafted with love by Instagram users.",
"version": "145.0",
"versionDate": "2020-12-21",
"versionDescription": "Bug fixes and improvements.",
"downloadURL": "https://github.com/QuarkSources/quarksources.github.io/releases/download/v1.0/Instagram-Rocket.ipa",
"localizedDescription": "The Much-Awaited App\n\nRocket for Instagram could be categorized as an Instagram user’s dream tweak, because it’s going to let you do things that the photo and video sharing social network probably doesn’t want you to do, but nevertheless they’re things you, the user, have wanted for a long time. Rocket not only gives you the features that are missing from Instagram, but it also gives you full control over the app.\n\nIf you’re an Instagram user looking to enhance your abilities within the app and obtain features that no stock user is ever going to get, Rocket for Instagram could be your new best friend.\n\nAmazing Features:\n\n- Browse home feed in grid layout.\n- Show following status in Profile.\n- Download posts from your feed.\n- Repost any post from your feed.\n- Long press on posts to zoom.\n- Copy post captions from your feed.\n- Download all Stories on Instagram.\n- Save videos from IGTV.\n- View Stories without notifying others.\n- Mute and unmute Stories.\n- Disable Auto-Advance in Stories.\n- Hide Stories from your feed.\n- Play in high quality on Mobile Data.\n- Long press on profile photo to zoom.\n- Disable read receipts in DM.\n- Disable Screenshot notifications in DM.\n- Disable Read Receipts in DM.",
"iconURL": "https://i.imgur.com/Nf6m0w5.png",
"tintColor": "#c7309b",
"size": 80434188,
"permissions": [
{
"type": "photos",
"usageDescription": "This lets you share photos from your library and save photos to your Camera Roll."
},
{
"type": "camera",
"usageDescription": "This lets you take photos and record video."
},
{
"type": "microphone",
"usageDescription": "This lets you record videos with sound."
},
{
"type": "contacts",
"usageDescription": "This helps you and others find friends and more. Your contacts will be synced and securely stored on Instagram's servers."
},
{
"type": "location",
"usageDescription": "Instagram uses this to make some features work, personalize content, help people find places and more. You can always change this later in your phone’s settings."
},
{
"type": "faceid",
"usageDescription": "This lets you log into Instagram using Apple Face ID."
}
],
"screenshotURLs": [
"https://i.imgur.com/H6FuvcZ.png",
"https://i.imgur.com/JkU9XpS.png",
"https://i.imgur.com/Xukz00u.png",
"https://i.imgur.com/SZcgiMZ.png"
]
},
{
"name": "Instagram++",
"bundleIdentifier": "com.pandaapp.igpp",
"developerName": "unlimapps",
"subtitle": "The tweaked version of Instagram.",
"version": "124.0",
"versionDate": "2019-10-28",
"versionDescription": "Bug fixes and improvements.",
"downloadURL": "https://github.com/QuarkSources/quarksources.github.io/releases/download/v1.0/Instagram++.ipa",
"localizedDescription": "Instagram++ is a fully tweaked version that adds the most important features that you want.",
"iconURL": "https://i.imgur.com/Nf6m0w5.png",
"tintColor": "#c7309b",
"size": 80434188,
"permissions": [
{
"type": "photos",
"usageDescription": "This lets you share photos from your library and save photos to your Camera Roll."
},
{
"type": "camera",
"usageDescription": "This lets you take photos and record video."
},
{
"type": "microphone",
"usageDescription": "This lets you record videos with sound."
},
{
"type": "contacts",
"usageDescription": "This helps you and others find friends and more. Your contacts will be synced and securely stored on Instagram's servers."
},
{
"type": "location",
"usageDescription": "Instagram uses this to make some features work, personalize content, help people find places and more. You can always change this later in your phone’s settings."
},
{
"type": "faceid",
"usageDescription": "This lets you log into Instagram using Apple Face ID."
}
],
"screenshotURLs": [
"https://i.imgur.com/H6FuvcZ.png",
"https://i.imgur.com/JkU9XpS.png",
"https://i.imgur.com/Xukz00u.png",
"https://i.imgur.com/SZcgiMZ.png"
]
},
{
"name": "Instagram Rhino",
"bundleIdentifier": "com.Lema.Michael.InstagramApp",
"developerName": "Michael Lema",
"subtitle": "A powerful tweaked version of Instagram.",
"version": "167.0",
"versionDate": "2020-09-07",
"versionDescription": "Minor improvements.",
"downloadURL": "https://github.com/QuarkSources/quarksources.github.io/releases/download/v1.0/Instagram-Rhino.ipa",
"localizedDescription": "Instagram Rhino is tweaked version of the popular Instagram app. It adds all the features you've wanted, and more.",
"iconURL": "https://i.imgur.com/i5M0PEk.png",
"tintColor": "#16c54f",
"size": 64923971,
"permissions": [
{
"type": "photos",
"usageDescription": "This lets you share photos from your library and save photos to your Camera Roll."
},
{
"type": "camera",
"usageDescription": "This lets you take photos and record video."
},
{
"type": "microphone",
"usageDescription": "This lets you record videos with sound."
},
{
"type": "contacts",
"usageDescription": "This helps you and others find friends and more. Your contacts will be synced and securely stored on Instagram's servers."
},
{
"type": "location",
"usageDescription": "Instagram uses this to make some features work, personalize content, help people find places and more. You can always change this later in your phone’s settings."
},
{
"type": "faceid",
"usageDescription": "This lets you log into Instagram using Apple Face ID."
}
],
"screenshotURLs": [
"https://i.imgur.com/pWFwm6N.png",
"https://i.imgur.com/GbFXm0a.png"
]
},
{
"name": "WhatsApp++",
"bundleIdentifier": "net.whatsapp.WhatsApp",
"developerName": "unlimapps",
"subtitle": "WhatsApp but with more amazing features.",
"version": "2.19.71",
"versionDate": "2019-08-14",
"versionDescription": "Bug fixes.",
"downloadURL": "https://github.com/QuarkSources/quarksources.github.io/releases/download/v1.0/WhatsApp%2B%2B.ipa?dl=1",
"localizedDescription": "Features:\n\n• Hide your online and last seen status from others\n• Disable read receipts so that others will not know when you read their message\n• Disable delivery receipts so that others will know when the message has been delivered to you\n• Customize the look and feel of Whatsapp\n• Use a full profile picture that doesn't get cropped\n• Send more than 10 media at once\n• Share music from your device\n• Record audio with a single tap rather than having to tap and hold\n• Lock WhatsApp with Touch ID or passcode",
"iconURL": "https://i.imgur.com/pT4kfwk.png",
"tintColor": "#2ad347",
"size": 119535189,
"permissions": [
{
"type": "photos",
"usageDescription": "This lets you send photos and videos from your library and save the ones you capture."
},
{
"type": "camera",
"usageDescription": "This lets you take photos and videos right from within WhatsApp."
},
{
"type": "contacts",
"usageDescription": "Upload your contacts to WhatsApp's servers to help you quickly get in touch with your friends and help us provide a better experience."
},
{
"type": "microphone",
"usageDescription": "This lets you make calls, send Voice Messages, and record videos with sound."
},
{
"type": "faceid",
"usageDescription": "Use Face ID to authenticate on WhatsApp."
},
{
"type": "reminders",
"usageDescription": "This lets you set reminders to call your friends back."
},
{
"type": "siri",
"usageDescription": "This lets you use Siri to quickly send and read messages and make calls."
},
{
"type": "location",
"usageDescription": "If you always allow access to your location, you can choose to share your live location, and it will update even when you're not using the app. If you only allow access while using the app, you can only send your current location or a nearby place."
},
{
"type": "calendars",
"usageDescription": "This lets you create events on your calendar."
}
],
"screenshotURLs": [
"https://i.imgur.com/QA8U38K.png",
"https://i.imgur.com/oeY0SpI.png",
"https://i.imgur.com/CNv0CNe.png"
]
}
],
"news": [
{
"title": "ComicBox now on AltStore.",
"identifier": "comicbox-now-on-altstore",
"caption": "All the comics you could ever want, wrapped in one app.",
"tintColor": "#012839",
"imageURL": "https://i.imgur.com/zHXTp9l.png",
"appID": "comicreader.net.ios",
"date": "2020-09-24",
"notify": false
},
{
"title": "Instagram Rocket now available for download!",
"identifier": "ig-rocket-now-download",
"caption": "A tweaked version of Instagram which adds a great many new features and abilities.",
"tintColor": "#923585",
"imageURL": "https://i.imgur.com/GTFBKjG.png",
"appID": "com.burbn.instagram",
"date": "2020-03-25",
"notify": false
},
{
"title": "Paperback on AltStore.",
"identifier": "paperback-on-altstore",
"caption": "Ad-free manga reader for iOS 13.",
"tintColor": "#1a1a1a",
"imageURL": "https://i.imgur.com/suFsoRi.png",
"appID": "com.FaizanDurrani.Paperback",
"date": "2020-05-12",
"notify": false
},
{
"title": "Deezer++ now in AltStore!",
"identifier": "deezer-now-altstore",
"caption": "Your music, your way.",
"tintColor": "#252d36",
"imageURL": "https://i.imgur.com/arh5eRY.png",
"appID": "com.deezer.Deezer",
"date": "2020-04-04",
"notify": false
},
{
"title": "WhatsApp++ available to download!",
"identifier": "whatsapp-available-download",
"caption": "The WhatsApp with all the features you want.",
"tintColor": "#2ad347",
"imageURL": "https://i.imgur.com/5dHg6KH.png",
"appID": "net.whatsapp.WhatsApp",
"date": "2020-03-28",
"notify": false
},
{
"title": "Get Crunchyroll++ now!",
"identifier": "download-crunchyroll++-now",
"caption": "The Ad-free Anime you love.",
"tintColor": "#f47521",
"imageURL": "https://i.imgur.com/RfMFroL.png",
"appID": "com.crunchyroll.iphone",
"date": "2020-03-27",
"notify": false
},
{
"title": "Twitter++ now on AltStore!",
"identifier": "twitter++-now-on-altstore",
"caption": "Clean, ad-free Twitter.",
"tintColor": "#1fa0f3",
"imageURL": "https://i.imgur.com/3YuVgqw.png",
"appID": "com.atebits.Tweetie2",
"date": "2020-03-27",
"notify": false
},