-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathNEW_FREE.txt
2802 lines (2802 loc) · 104 KB
/
NEW_FREE.txt
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
[
{
"title": "MaxSpeedfiy-Unlimited&Easy",
"appId": "com.speedfiymax.app",
"url": "https://play.google.com/store/apps/details?id=com.speedfiymax.app",
"icon": "https://play-lh.googleusercontent.com/um1SUFZ4MvJ6heUV-h6Ygt23X1gQhw9b5Gk38enw387Ke4xXGh2ixgFt8Y-Q1tXOTAg",
"developer": "PRIME DIGITAL PTE. LTD.",
"developerId": "PRIME+DIGITAL+PTE.+LTD.",
"priceText": "FREE",
"price": 0,
"free": true,
"summary": "Simple, fast and easy-to-use high-speed proxy",
"scoreText": "4.6",
"score": 4.62
},
{
"title": "Ramse",
"appId": "com.ramse.ramse",
"url": "https://play.google.com/store/apps/details?id=com.ramse.ramse",
"icon": "https://play-lh.googleusercontent.com/g_u74eIEsUItA1AjpW0LcThpzip8k9G4rh2szYBPf4C4X5zmzqYRnlgaBORFkP0IfA",
"developer": "Raven'Malik Wilson",
"developerId": "Raven'Malik+Wilson",
"priceText": "FREE",
"price": 0,
"free": true,
"summary": "WELCOME TO RAMSE WHERE YOU CAN CONNECT WITH FRIENDS, FAMILY AND OTHER.",
"scoreText": "4.0",
"score": 3.9915254
},
{
"title": "Super Cleaner - Speed Booster",
"appId": "com.clean.master.phoneboost.android",
"url": "https://play.google.com/store/apps/details?id=com.clean.master.phoneboost.android",
"icon": "https://play-lh.googleusercontent.com/emBEsXhZdbHga-HlEluUMwlVeU96RXwRb7HjY7iD01wb7_POu1kqWMI0ivZLeIowCA",
"developer": "cloudstoners",
"developerId": "cloudstoners",
"priceText": "FREE",
"price": 0,
"free": true,
"summary": "Super Cleaner is one of the best free optimizers for devices.",
"scoreText": "4.9",
"score": 4.8525643
},
{
"title": "Pixel by Number - Pixel Arts",
"appId": "com.color.number.sanbox.pixel.art",
"url": "https://play.google.com/store/apps/details?id=com.color.number.sanbox.pixel.art",
"icon": "https://play-lh.googleusercontent.com/gxMh9m0lNsXKzfXW-hKuvPGLxROlkIUprJrxdXK4rC4-2qaqB8pj-a8pcmaipE4SaKw",
"developer": "Commandoo Jsc",
"developerId": "Commandoo+Jsc",
"priceText": "FREE",
"price": 0,
"free": true,
"summary": "Pixel by Number - Painting your stress away by 10.000+ peaceful relaxing arts",
"scoreText": "4.2",
"score": 4.240741
},
{
"title": "OneCut - Video Editor",
"appId": "com.tqyspbj.videocut",
"url": "https://play.google.com/store/apps/details?id=com.tqyspbj.videocut",
"icon": "https://play-lh.googleusercontent.com/R55M1h-cCnYSNvBczVpMdGqlzNsyLuaqI03UKoMGy2-geY6VSpmPy12NCcxybTardA",
"developer": "Denise Arabella",
"developerId": "Denise+Arabella",
"priceText": "FREE",
"price": 0,
"free": true,
"summary": "Video Editor,Video Cut,Video Effects",
"scoreText": "4.8",
"score": 4.821782
},
{
"title": "HD Video Screen Mirroring",
"appId": "com.hdvideoscreenmirroring.castvideo.castvideototv.simulator",
"url": "https://play.google.com/store/apps/details?id=com.hdvideoscreenmirroring.castvideo.castvideototv.simulator",
"icon": "https://play-lh.googleusercontent.com/-mwtQhfkAXz2UtsDmNJLDl-7FvQQiTIDhPTTrKlLDTsALwpT_NyuZ_-gnmuFkW2_1rI",
"developer": "Supra Supply",
"developerId": "Supra+Supply",
"priceText": "FREE",
"price": 0,
"free": true,
"summary": "Screen Mirroring app helps you stream phone to TV screen in high quality",
"scoreText": "1.6",
"score": 1.5744681
},
{
"title": "Bling Wallpeper-live,4K,HD",
"appId": "com.Blingwallpaper.hd",
"url": "https://play.google.com/store/apps/details?id=com.Blingwallpaper.hd",
"icon": "https://play-lh.googleusercontent.com/-NL_6qpT4ETIEg5k5z2Sq3x-8LLfabt-GleIkTvfjyv2UitZ0hsRoRAXjVCqLyiOdg",
"developer": "[email protected]",
"developerId": "[email protected]",
"priceText": "FREE",
"price": 0,
"free": true,
"summary": "Easy,4K,HD,Livewallpaper",
"scoreText": "3.8",
"score": 3.8
},
{
"title": "Live 3D Maps",
"appId": "com.live3dmaps.airworld",
"url": "https://play.google.com/store/apps/details?id=com.live3dmaps.airworld",
"icon": "https://play-lh.googleusercontent.com/3WfjAqEZ9Vg27HytPnnG0gVFaasHaCbey15PAcgurwuTKsHyycwhwxJQ1o4GO4yyj-Y",
"developer": "Phyllis Morton",
"developerId": "Phyllis+Morton",
"priceText": "FREE",
"price": 0,
"free": true,
"summary": "A great way to take your travels around the world.",
"scoreText": "1.3",
"score": 1.2857143
},
{
"title": "Video Screen cast HD",
"appId": "videomirroring.HDgallery.HDvideoplayer.livevideocall",
"url": "https://play.google.com/store/apps/details?id=videomirroring.HDgallery.HDvideoplayer.livevideocall",
"icon": "https://play-lh.googleusercontent.com/fvveMl9L5MbudBBiPr5Z8coNC78oKzitCczGTpuHizzgQkr2KU_bWr4NSCYy4moSgLA",
"developer": "Jayasurya",
"developerId": "Jayasurya",
"priceText": "FREE",
"price": 0,
"free": true,
"summary": "support wireless display for using Screen mirroring features",
"scoreText": "3.3",
"score": 3.264706
},
{
"title": "Clap To Find",
"appId": "cla.ptof.ind",
"url": "https://play.google.com/store/apps/details?id=cla.ptof.ind",
"icon": "https://play-lh.googleusercontent.com/rxhb6M38TI6r9r0wkQHnqNBYMNips5JPpZU8OCCulPzuejiZ8s2o79lOa7jQ6sYzdl7z",
"developer": "ClapToFind!",
"developerId": "ClapToFind!",
"priceText": "FREE",
"price": 0,
"free": true,
"summary": "Clap To Find is a great assistant that will always help you find your phone",
"scoreText": "2.6",
"score": 2.5714285
},
{
"title": "Musae Music Player",
"appId": "org.musinvshen.player",
"url": "https://play.google.com/store/apps/details?id=org.musinvshen.player",
"icon": "https://play-lh.googleusercontent.com/8O9PV7lBxttkS45_cTR_muoTQoQhR2eF1OHAZew6aKeQJGqLWgDdcLdzgG2YK3Ehya4",
"developer": "Teri Reeve",
"developerId": "Teri+Reeve",
"priceText": "FREE",
"price": 0,
"free": true,
"summary": "Musae Music Player:give your ears a break",
"scoreText": "4.5",
"score": 4.537037
},
{
"title": "Spin Rewards - Daily Spins",
"appId": "com.spins.coinmasterdailylink.spinreward",
"url": "https://play.google.com/store/apps/details?id=com.spins.coinmasterdailylink.spinreward",
"icon": "https://play-lh.googleusercontent.com/u-GfiFpTj641FeeFckfU-QWM8ei-Ht6LITeHQdu-_FN73Tv2FB8d2iXXsacGBkoOEy8",
"developer": "Runaway Team",
"developerId": "Runaway+Team",
"priceText": "FREE",
"price": 0,
"free": true,
"summary": "Spin Rewards provide daily links: Spins, coins, faqs & how to play Coin Master",
"scoreText": "4.6",
"score": 4.6296296
},
{
"title": "FFF FF Skin Tool",
"appId": "com.lemode.allviewr",
"url": "https://play.google.com/store/apps/details?id=com.lemode.allviewr",
"icon": "https://play-lh.googleusercontent.com/NUb0rA4CHLfL7ggHidpE9mY0EbxlPrkuOgNDTSm-fODAO9rXRxD_-o_FMgKg7maFcA",
"developer": "frection",
"developerId": "frection",
"priceText": "FREE",
"price": 0,
"free": true,
"summary": "Gun Skins for Entertainment.",
"scoreText": "3.5",
"score": 3.5128205
},
{
"title": "HD Video Screen Mirroring",
"appId": "com.fedro.iuyio",
"url": "https://play.google.com/store/apps/details?id=com.fedro.iuyio",
"icon": "https://play-lh.googleusercontent.com/fqSRS6I83jbsXJcQPhRQQYN41-2DaZR3jSw4XCsMLCfi0SOC15dxM_g-W8rd4k9z3L8",
"developer": "Infinity Techno",
"developerId": "Infinity+Techno",
"priceText": "FREE",
"price": 0,
"free": true,
"summary": "Screen Mirroring is the best app for Connect & mirroring your phone to your TV",
"scoreText": "3.5",
"score": 3.5263157
},
{
"title": "Rec Room Guide 2K22",
"appId": "com.componedefec.recroom_recroom",
"url": "https://play.google.com/store/apps/details?id=com.componedefec.recroom_recroom",
"icon": "https://play-lh.googleusercontent.com/lJdd42osAVyX6KdLeKIkNGG3AOqhS5x9OSiCml-CYKWu7VSg9ddycLXj51s3rlpEew",
"developer": "ComPon",
"developerId": "ComPon",
"priceText": "FREE",
"price": 0,
"free": true,
"summary": "Welcome to the Complete Rec Room Game VR Walkthrough",
"scoreText": "3.3",
"score": 3.2916667
},
{
"title": "HDCam Pro",
"appId": "hd.cam.proo",
"url": "https://play.google.com/store/apps/details?id=hd.cam.proo",
"icon": "https://play-lh.googleusercontent.com/DWChez-fokep0MITZjMgK1hiE-lg-bwMRJXGifU6ae_3fERLEqhCd_64UJzlvJO2mlcF",
"developer": "HDCam Pro",
"developerId": "HDCam+Pro",
"priceText": "FREE",
"price": 0,
"free": true,
"summary": "HDCam PRO will be able to make you a real professional photographer",
"scoreText": "1.8",
"score": 1.8
},
{
"title": "FFF FF Skin Tool",
"appId": "com.fffskin.tools.emote.ffroyaldance",
"url": "https://play.google.com/store/apps/details?id=com.fffskin.tools.emote.ffroyaldance",
"icon": "https://play-lh.googleusercontent.com/-sRpNpLtgbK7sAjdKImdmDuF7IGyn6arPOwoRc7r8Q-r3hwHc7f2m6HAaaVGMfs6csDi",
"developer": "Lazy Mobile Apps",
"developerId": "Lazy+Mobile+Apps",
"priceText": "FREE",
"price": 0,
"free": true,
"summary": "FFF FF Skin Tool, Elite Pass Bundles, Emotes & Gun Skins for Entertainment!",
"scoreText": "4.6",
"score": 4.625
},
{
"title": "DCU Digital Banking",
"appId": "com.projectfinance.android.dcu",
"url": "https://play.google.com/store/apps/details?id=com.projectfinance.android.dcu",
"icon": "https://play-lh.googleusercontent.com/Dfn9Eo3rBc9Y5Zf7sPnYXjMN9_f7BmivBkq3ZB-3uEVTzteaBFV0PUl6p_AdAXgWtbI",
"developer": "Digital Federal Credit Union",
"developerId": "Digital+Federal+Credit+Union",
"priceText": "FREE",
"price": 0,
"free": true,
"summary": "Empower your financial future with DCU Digital Banking.",
"scoreText": "2.2",
"score": 2.2178218
},
{
"title": "HD Video Body Scanner",
"appId": "com.girlsbody.bodyscanner",
"url": "https://play.google.com/store/apps/details?id=com.girlsbody.bodyscanner",
"icon": "https://play-lh.googleusercontent.com/e3zcAkCiIsQYsu4e-ZnZNkMfOi4M9WT9op_v9768tNrcJ232be__dcFlJGXy5Vu3uHNo",
"developer": "Treat App",
"developerId": "Treat+App",
"priceText": "FREE",
"price": 0,
"free": true,
"summary": "HD Video Body scanner is just for fun and entertainment",
"scoreText": "3.8",
"score": 3.84375
},
{
"title": "|Poppy Mobile Playtime| Guide",
"appId": "com.teslawestappinc.popyplaytime",
"url": "https://play.google.com/store/apps/details?id=com.teslawestappinc.popyplaytime",
"icon": "https://play-lh.googleusercontent.com/K9dPF18iiy1aOamzsIMj-4GiDPdI2kC-oanot5gDNt74HKoV5-IzZREFt5xY6I5QbM2D",
"developer": "Wanna Indonesia",
"developerId": "Wanna+Indonesia",
"priceText": "FREE",
"price": 0,
"free": true,
"summary": "New guide for Poppy Playtime game and Huggy Wuggy monster!",
"scoreText": "3.5",
"score": 3.5384614
},
{
"title": "CastX - HD Video Mirroring",
"appId": "com.eight.dgbmapp.hdvideoprojector",
"url": "https://play.google.com/store/apps/details?id=com.eight.dgbmapp.hdvideoprojector",
"icon": "https://play-lh.googleusercontent.com/Xn4qH64_zeVcgFaXt-LB54iEDI2C1ghUD7UZWBg98rcuqPfgqjq8sLkKCMGdFajP_Fk",
"developer": "Slim App Studio",
"developerId": "Slim+App+Studio",
"priceText": "FREE",
"price": 0,
"free": true,
"summary": "Screen Mirroring app helps you stream phone to TV screen in high quality.",
"scoreText": "3.2",
"score": 3.1578948
},
{
"title": "StatusGo: Descarga Estados",
"appId": "com.status.go",
"url": "https://play.google.com/store/apps/details?id=com.status.go",
"icon": "https://play-lh.googleusercontent.com/sPePufBnL_0Qj9TSH2qbThw97NBNR0P1QPHZPI6ey3P3X7arQRe9St80nLzzHgTVOCo",
"developer": "Superbits Studios",
"developerId": "7131509129381203768",
"priceText": "FREE",
"price": 0,
"free": true,
"summary": "Download Whatsapp statuses, Reels, Tiktok totally free.",
"scoreText": "4.2",
"score": 4.2352943
},
{
"title": "Jentle Garden",
"appId": "com.iicombined.jentleflower",
"url": "https://play.google.com/store/apps/details?id=com.iicombined.jentleflower",
"icon": "https://play-lh.googleusercontent.com/nNRseS1U5tnGT4Xv8G7TZZKE5Gyk5jwlmwkvRUQJr9KLTUXkF7X-v37AZ6d1lMfmxA",
"developer": "IICOMBINED",
"developerId": "IICOMBINED",
"priceText": "FREE",
"price": 0,
"free": true,
"summary": "Gentle Monster X Jennie",
"scoreText": "4.8",
"score": 4.832215
},
{
"title": "People Playground Ragdoll Tips",
"appId": "com.elevengames.peopleragdoll.co.tips",
"url": "https://play.google.com/store/apps/details?id=com.elevengames.peopleragdoll.co.tips",
"icon": "https://play-lh.googleusercontent.com/X5BO88THM1zN7gEgdTBqa82Zic9HxcbM9815jH9-xohvPddHQbsRrCcCzs11xmW67LnS",
"developer": "Eleven Games",
"developerId": "8241896846132456431",
"priceText": "FREE",
"price": 0,
"free": true,
"summary": "Welcome to People Playground Ragdoll Game Tips!",
"scoreText": "3.8",
"score": 3.8333333
},
{
"title": "Wifi Tap",
"appId": "com.wif.itap",
"url": "https://play.google.com/store/apps/details?id=com.wif.itap",
"icon": "https://play-lh.googleusercontent.com/kZogbkdX5nWvdcdMrX4dZpa7JbMvq-DtpAHlFt0ocZk8MV-yPT58jmat8sooM1vdzrHm",
"developer": "WA UNITY",
"developerId": "WA+UNITY",
"priceText": "FREE",
"price": 0,
"free": true,
"summary": "Wi-Fi map right in your smartphone!",
"scoreText": "0.0",
"score": 0
},
{
"title": "Sky 3D",
"appId": "com.proxymaster.smartskyvpnproxy",
"url": "https://play.google.com/store/apps/details?id=com.proxymaster.smartskyvpnproxy",
"icon": "https://play-lh.googleusercontent.com/vSryVumR4cWCqK3SZT_hLLs2aO0Im7UoUZ8QqA4JSfasGMA_jiHiMtlEffMIJpPF3pnZ",
"developer": "Galina Balde Apps",
"developerId": "Galina+Balde+Apps",
"priceText": "FREE",
"price": 0,
"free": true,
"summary": "Smart Sky 3D - your online assistant in the phone!",
"scoreText": "2.3",
"score": 2.3333333
},
{
"title": "Clean Phone - CPU Cooler",
"appId": "com.clean.junk.phone.booster.smart.master",
"url": "https://play.google.com/store/apps/details?id=com.clean.junk.phone.booster.smart.master",
"icon": "https://play-lh.googleusercontent.com/XPT3XFzOjnQ2X3_bUuyGFJc7dK6PRYWf2lDZS08XI3igb_hEowI97BlU5rxvHWW9Ugl4",
"developer": "DYGO Studio",
"developerId": "8740563413075652432",
"priceText": "FREE",
"price": 0,
"free": true,
"summary": "Clean Phone – Booster, Clear Cache, CPU Cooler is a small, fast, and smart.",
"scoreText": "4.8",
"score": 4.785714
},
{
"title": "ShineStar Camera",
"appId": "com.shinestar.camerax",
"url": "https://play.google.com/store/apps/details?id=com.shinestar.camerax",
"icon": "https://play-lh.googleusercontent.com/hZfwBrLlXqM61eAwPY_9700QCsIGAMGvcGFMFaKAsLe4-Xxn0lcyoMj8fEwdD0ojpA",
"developer": "tong lee",
"developerId": "tong+lee",
"priceText": "FREE",
"price": 0,
"free": true,
"summary": "ShineStar Camera:Shine Beauty Cam",
"scoreText": "4.0",
"score": 4
},
{
"title": "Celebrations Passport",
"appId": "com.flowers1800.passport.app",
"url": "https://play.google.com/store/apps/details?id=com.flowers1800.passport.app",
"icon": "https://play-lh.googleusercontent.com/4_YC57Wth4Bgusi3gNMwRU6pRwbvW4026aZDaaezV58SmEbqfDOPSyeg4-2lIDmPG0k",
"developer": "1-800-flowers.com",
"developerId": "1-800-flowers.com",
"priceText": "FREE",
"price": 0,
"free": true,
"summary": "Send gifts from premier gifting brands: 1-800-Flowers, Harry & David, and more!",
"scoreText": "4.6",
"score": 4.637681
},
{
"title": "NetHD",
"appId": "com.methuselah",
"url": "https://play.google.com/store/apps/details?id=com.methuselah",
"icon": "https://play-lh.googleusercontent.com/Z0vlV5I0JuZINakVcuttmYU2hoiWzIssyK8j4I-DFQcXpVnIic2IQJNtp-kLDYg505Y",
"developer": "Tap Studios.",
"developerId": "7068143225775354906",
"priceText": "FREE",
"price": 0,
"free": true,
"summary": "With a huge content store updated daily for the purpose of serving users.",
"scoreText": "4.6",
"score": 4.5700936
},
{
"title": "Easy link - Private & Reliable",
"appId": "com.easylink.fastlink.speed",
"url": "https://play.google.com/store/apps/details?id=com.easylink.fastlink.speed",
"icon": "https://play-lh.googleusercontent.com/P-nTEicvUR7hK8Y0Q_Sj1UOkjpMarED2snnmadbwFWtU0O2qiY_GKfc1gAfeZTnNUL0",
"developer": "Galaxy Lab Team",
"developerId": "Galaxy+Lab+Team",
"priceText": "FREE",
"price": 0,
"free": true,
"summary": "Protect your private and keep your network browsing anonymous.Fast and secure.",
"scoreText": "0.0",
"score": 0
},
{
"title": "Video Downloader With VPN",
"appId": "playfree.videosecure.downloadervpn",
"url": "https://play.google.com/store/apps/details?id=playfree.videosecure.downloadervpn",
"icon": "https://play-lh.googleusercontent.com/awDqOqCURDiImquNgPBfoI4q5AHpfBJKu_1ckmhWYfs8loHEiL_7quUCjwM0foodnA",
"developer": "Developer solution",
"developerId": "Developer+solution",
"priceText": "FREE",
"price": 0,
"free": true,
"summary": "This app help to easy download videos, social media clip.",
"scoreText": "4.1",
"score": 4.111111
},
{
"title": "Fast Clean-Booster&Optimizer",
"appId": "com.fast.phone.safe",
"url": "https://play.google.com/store/apps/details?id=com.fast.phone.safe",
"icon": "https://play-lh.googleusercontent.com/Hli0nYbPARyQrQByeFpcP3k6fCztfjA1kJvdlGxz4I71sXA-bcUWoq4RCm9i6aN2T5E",
"developer": "Godfrey Inc.",
"developerId": "Godfrey+Inc.",
"priceText": "FREE",
"price": 0,
"free": true,
"summary": "Fast Clean is a clean master to speed up your phone, cool down your phone!",
"scoreText": "0.0",
"score": 0
},
{
"title": "HD Video Screen Mirroring",
"appId": "com.miracast.superscreenmirror",
"url": "https://play.google.com/store/apps/details?id=com.miracast.superscreenmirror",
"icon": "https://play-lh.googleusercontent.com/N4kZ_POebrtr1rBqgWga7rJ9ax_sSPpCIIacZO6KFTfZatnSaifFXaqSKUs9QuPB0kQ",
"developer": "Spare Change Field",
"developerId": "Spare+Change+Field",
"priceText": "FREE",
"price": 0,
"free": true,
"summary": "Screen Mirroring app helps you stream phone to TV screen in high quality.",
"scoreText": "0.0",
"score": 0
},
{
"title": "HD Video Screen Cast",
"appId": "com.casttotv.screenmirroring.screencasttv.mirroring",
"url": "https://play.google.com/store/apps/details?id=com.casttotv.screenmirroring.screencasttv.mirroring",
"icon": "https://play-lh.googleusercontent.com/booDjDdWN3AyF8xDS52mWqgeFkMn7u-GflTWc7_l93fbghR2ehNRuFvAUVd7mbe-Y04",
"developer": "Dandyliving",
"developerId": "Dandyliving",
"priceText": "FREE",
"price": 0,
"free": true,
"summary": "Screen Mirroring is the nect & Casting your p",
"scoreText": "0.0",
"score": 0
},
{
"title": "Caller Name & Location Tracker",
"appId": "find.livelocation.with.excellence",
"url": "https://play.google.com/store/apps/details?id=find.livelocation.with.excellence",
"icon": "https://play-lh.googleusercontent.com/2gnIZwLB4odIr6O4L_LJmOdsLjIwbObge7N4tyKgS8xCaOi0ddKTUQnaMyYfNQISoLM",
"developer": "i Apps",
"developerId": "i+Apps",
"priceText": "FREE",
"price": 0,
"free": true,
"summary": "This is the only application that displays Caller Location on your phone screen.",
"scoreText": "4.5",
"score": 4.5394735
},
{
"title": "Speed Clean-Booster, Optimizer",
"appId": "speed.phone.safe.guard",
"url": "https://play.google.com/store/apps/details?id=speed.phone.safe.guard",
"icon": "https://play-lh.googleusercontent.com/8SKQaxCXk4WmiYgfPnBOpCW5LsraJitAl1Z46Ajt9qYUjrnp51r_ajxeS0UJK9Ervzg",
"developer": "App Develop Team",
"developerId": "App+Develop+Team",
"priceText": "FREE",
"price": 0,
"free": true,
"summary": "Speed clean is a phone booster with smart battery saver and CPU cooler.",
"scoreText": "4.7",
"score": 4.6666665
},
{
"title": "Encanto Mod for Minecraft PE",
"appId": "com.masterforskins.encantomodminecraftpe",
"url": "https://play.google.com/store/apps/details?id=com.masterforskins.encantomodminecraftpe",
"icon": "https://play-lh.googleusercontent.com/tqNbyoa3oidg-6e3ZKBMCc5qhlI8ll_AcVOCR47zLXHo5IoAnDax_75x_-A-BaoFNQ",
"developer": "Master for Skins",
"developerId": "Master+for+Skins",
"priceText": "FREE",
"price": 0,
"free": true,
"summary": "Get the Encanto Mod Skin and Maps for Minecraft PE",
"scoreText": "4.3",
"score": 4.3125
},
{
"title": "VPN - Turbo VPN Nico VPN",
"appId": "de.usavpnsuper.app",
"url": "https://play.google.com/store/apps/details?id=de.usavpnsuper.app",
"icon": "https://play-lh.googleusercontent.com/iefSm8EJvBlUgs1Vwm_XF0UVL3s_odBM0XANaE-c_aZLsMhtBHQshjA1QgD64QgQBg",
"developer": "Shinning Moon Pro",
"developerId": "Shinning+Moon+Pro",
"priceText": "FREE",
"price": 0,
"free": true,
"summary": "Turbo VPN encrypts and protects your data connection online.",
"scoreText": "4.8",
"score": 4.7954545
},
{
"title": "Now VPN - Fast Secure Proxy",
"appId": "com.now.vpn",
"url": "https://play.google.com/store/apps/details?id=com.now.vpn",
"icon": "https://play-lh.googleusercontent.com/h3IofWeRcgC3mXnZDqDUDZXZfDYgxgE2NS2K9IrQoE4NAlza-oqj1pjNNmWiHFeE6g",
"developer": "CTECH GLOBAL PTE LTD",
"developerId": "CTECH+GLOBAL+PTE+LTD",
"priceText": "FREE",
"price": 0,
"free": true,
"summary": "Super VPN Proxy for Android",
"scoreText": "4.1",
"score": 4.0666666
},
{
"title": "FFF FF Skin Tools",
"appId": "com.cosqaztly.freeqazzoom",
"url": "https://play.google.com/store/apps/details?id=com.cosqaztly.freeqazzoom",
"icon": "https://play-lh.googleusercontent.com/kkesJ789fKGWXd1yVYWC_P0NiiZBgGYL00GwwMKhZf0cztjzYrtbRKk_9NSD9FQCJfA",
"developer": "Sonepe Suhaga",
"developerId": "Sonepe+Suhaga",
"priceText": "FREE",
"price": 0,
"free": true,
"summary": "Emotes & Gun Skins",
"scoreText": "4.4",
"score": 4.4
},
{
"title": "ArtPlay-Cartoon Video editor",
"appId": "com.type.cartoon.video",
"url": "https://play.google.com/store/apps/details?id=com.type.cartoon.video",
"icon": "https://play-lh.googleusercontent.com/yfFSo2BW5GKh0ubEs_cHsTCTxUvXbxrqOGNgup3YarOm45Le5CAFnUdX-HdNmoLBVQ",
"developer": "lucatime",
"developerId": "lucatime",
"priceText": "FREE",
"price": 0,
"free": true,
"summary": "Cartoon Video editor&GIF Makers",
"scoreText": "0.0",
"score": 0
},
{
"title": "FFF FF Skin Tool",
"appId": "com.lonqweoad.shorqweoad",
"url": "https://play.google.com/store/apps/details?id=com.lonqweoad.shorqweoad",
"icon": "https://play-lh.googleusercontent.com/a4Xy2PgVc7c50ZTcoImn19PNzURHKpwUnsQDmLh5smXvApHnr0dz6xA15rPgD8xzL_U",
"developer": "kingoK",
"developerId": "kingoK",
"priceText": "FREE",
"price": 0,
"free": true,
"summary": "Emotes & Gun Skins for Entertainment.",
"scoreText": "4.4",
"score": 4.368421
},
{
"title": "Spirit Box EVP",
"appId": "com.MarcusFerronGames.SpiritBox",
"url": "https://play.google.com/store/apps/details?id=com.MarcusFerronGames.SpiritBox",
"icon": "https://play-lh.googleusercontent.com/y8fsd3vgSAZLnZAJvhsPL13R4zsPLbBEBS8bWz5Q3zigEfUNlMKQcS_sFfyXoA51oQ",
"developer": "Marcus Ferron",
"developerId": "Marcus+Ferron",
"priceText": "FREE",
"price": 0,
"free": true,
"summary": "Communicate with the dead! Chat with spirits!",
"scoreText": "3.5",
"score": 3.525641
},
{
"title": "Swordfish SpeedPro",
"appId": "com.connect.swordfishspeedpro",
"url": "https://play.google.com/store/apps/details?id=com.connect.swordfishspeedpro",
"icon": "https://play-lh.googleusercontent.com/CEBi6IrKUUSpkJosFHsR_R6oikeV9wwW9o_O_-kapbTfKqCruwYyQNHcQv56Ei2ZDEk",
"developer": "mooncy",
"developerId": "mooncy",
"priceText": "FREE",
"price": 0,
"free": true,
"summary": "Swordfish SpeedPro-protect your internet security and your privacy",
"scoreText": "0.0",
"score": 0
},
{
"title": "FF Tools FFF Clue",
"appId": "com.fftoolfree.fftools",
"url": "https://play.google.com/store/apps/details?id=com.fftoolfree.fftools",
"icon": "https://play-lh.googleusercontent.com/12-VMRX8Yd4Zt8S7W-vrQGxTgBnx9MfrdgJYLAQr5Pn-OE2PK3uqS_WH_DX8ZfFMLj4",
"developer": "clara apps ltd",
"developerId": "clara+apps+ltd",
"priceText": "FREE",
"price": 0,
"free": true,
"summary": "enjoy this FF tool guide, and share it with your friends via social media",
"scoreText": "4.7",
"score": 4.6764708
},
{
"title": "security breach game Guide",
"appId": "com.grewall17dev.itsmehdiguideforseucritybreach",
"url": "https://play.google.com/store/apps/details?id=com.grewall17dev.itsmehdiguideforseucritybreach",
"icon": "https://play-lh.googleusercontent.com/T8nX4UBNyx1RRiVnTvfwWlUBAXfVpykdNWa7JJ9_W2uNJlrg71WF-IemzNaexxFAfYM",
"developer": "Grewal17",
"developerId": "6879894257298457385",
"priceText": "FREE",
"price": 0,
"free": true,
"summary": "in security breach gregory must uncover the secrets and survive until dawn.",
"scoreText": "0.0",
"score": 0
},
{
"title": "HD Video Player with music",
"appId": "com.charlottefabron.hdvideoplayer",
"url": "https://play.google.com/store/apps/details?id=com.charlottefabron.hdvideoplayer",
"icon": "https://play-lh.googleusercontent.com/GMo29C9gzVjoLoUl5auDNbCqkED69I4YuFsI-fW4cFFqMDPztehwyJBgbVRvXXOcNZo",
"developer": "Shkordoi app",
"developerId": "Shkordoi+app",
"priceText": "FREE",
"price": 0,
"free": true,
"summary": "Play FULL HD Videos, Enjoy High Quality Videos. Best HD Video Player.",
"scoreText": "3.5",
"score": 3.4642856
},
{
"title": "FFF FF Skin Tools: Mod Skin",
"appId": "com.hadu.ff.skin.tools.pro.free",
"url": "https://play.google.com/store/apps/details?id=com.hadu.ff.skin.tools.pro.free",
"icon": "https://play-lh.googleusercontent.com/2XVFVwTuCRTlPu1q1eOkUk6NoGuoW9sJCTK0lqD13FvAljvKhTW6HFX_alFNuCeOnFg",
"developer": "Ha Du Store",
"developerId": "Ha+Du+Store",
"priceText": "FREE",
"price": 0,
"free": true,
"summary": "FFF FF Skin Tools: Mod Skin, Elite Pass Bundles, and Emotes for Entertainment!",
"scoreText": "4.9",
"score": 4.930693
},
{
"title": "Poppy Its Huggy Playtime Guide",
"appId": "com.amirhuggy.playtime",
"url": "https://play.google.com/store/apps/details?id=com.amirhuggy.playtime",
"icon": "https://play-lh.googleusercontent.com/WSj30F7AAyeli65k6l0SpmSq8j7pWiPAhl51YDxA2x4uZP8JXQJHbB9WtG5tuiofoz3A",
"developer": "Amir Amouri",
"developerId": "Amir+Amouri",
"priceText": "FREE",
"price": 0,
"free": true,
"summary": "Poppy It's Playtime For Huggy Wuggy Game Guide",
"scoreText": "0.0",
"score": 0
},
{
"title": "dēzl™",
"appId": "com.garmin.android.driveapp.dezl",
"url": "https://play.google.com/store/apps/details?id=com.garmin.android.driveapp.dezl",
"icon": "https://play-lh.googleusercontent.com/UbN10l7OhEAKMgZ5DSqUBjq-zhj02a5EsJ2pYbgRl1lXSVo4LKa2EBawrBvTbRu5U7OF",
"developer": "Garmin",
"developerId": "Garmin",
"priceText": "FREE",
"price": 0,
"free": true,
"summary": "CONNECT FOR THE LONG HAUL",
"scoreText": "3.5",
"score": 3.45
},
{
"title": "HD Video Screen Mirroring",
"appId": "com.jugnuqwe.terepyarme",
"url": "https://play.google.com/store/apps/details?id=com.jugnuqwe.terepyarme",
"icon": "https://play-lh.googleusercontent.com/JLQz1KMJCti6Lc0MSa9e52evMBpETRsuP2Pbrx_3AN8cyW4q6C2qJ_odUpTUaU7-aw",
"developer": "Suhag’s Apps",
"developerId": "Suhag%E2%80%99s+Apps",
"priceText": "FREE",
"price": 0,
"free": true,
"summary": "Screen Mirroring is the best app for Connect & mirroring your phone to your TV",
"scoreText": "4.4",
"score": 4.428571
},
{
"title": "Pedometer: Step Counter, Steps",
"appId": "caloriecounter.stepcounter.pedometer.steptracker",
"url": "https://play.google.com/store/apps/details?id=caloriecounter.stepcounter.pedometer.steptracker",
"icon": "https://play-lh.googleusercontent.com/-HkUYIyVFtPPRXvhNuUHeXlmy9-5YPgdLChHQHYHb3exBGG6uwAw8MIZ8EubWdmLFw",
"developer": "FAX Fitness Group",
"developerId": "7221230625429953918",
"priceText": "FREE",
"price": 0,
"free": true,
"summary": "Pedometer & Step Tracker to count your steps. Calorie Counter to burn calories",
"scoreText": "4.9",
"score": 4.9202127
},
{
"title": "ISP VPN - Fast & Secure VPN",
"appId": "com.ispvpn.securevpn",
"url": "https://play.google.com/store/apps/details?id=com.ispvpn.securevpn",
"icon": "https://play-lh.googleusercontent.com/unlSgs77OFqL8vmuagNLzdcAoB2VXO9lE7UKq-3AnJ7sjx1Pr-v_SP9OQapAqvADIrs",
"developer": "Next Hour",
"developerId": "7458883879632174832",
"priceText": "FREE",
"price": 0,
"free": true,
"summary": "ISP VPN is the fastest VPN to unlock websites and apps.",
"scoreText": "4.9",
"score": 4.857143
},
{
"title": "WiFi Auto - Connect Master",
"appId": "com.wifiauto.analyzer",
"url": "https://play.google.com/store/apps/details?id=com.wifiauto.analyzer",
"icon": "https://play-lh.googleusercontent.com/EV5XDwe6uDE3mKSpNOqbyj0GuKSwYDrtd52RDH0YmXhn8LPvQqjubq-blrO3mKLwlcee",
"developer": "lingqing",
"developerId": "lingqing",
"priceText": "FREE",
"price": 0,
"free": true,
"summary": "Wifi detection, clean phone and provide VPN unlimited Internet access",
"scoreText": "0.0",
"score": 0
},
{
"title": "HD video Screen Mirroring",
"appId": "com.screenmirror.hdvideoprojector.casttv",
"url": "https://play.google.com/store/apps/details?id=com.screenmirror.hdvideoprojector.casttv",
"icon": "https://play-lh.googleusercontent.com/4QjZkyn8GLYANLYUzIfjBHjlXPoPhTbyMqhUCsw-ppAg_ycmj1Dw0Q2mKc8wDg7icQ",
"developer": "Cast mirroring to TV with fast connection",
"developerId": "Cast+mirroring+to+TV+with+fast+connection",
"priceText": "FREE",
"price": 0,
"free": true,
"summary": "Scren cast app like screen mirroring with chromecast and Cast app to smart TV",
"scoreText": "2.6",
"score": 2.6
},
{
"title": "Mod FNaF Security Breach",
"appId": "com.ico_ttosn_ic.recwi_ngle_thart",
"url": "https://play.google.com/store/apps/details?id=com.ico_ttosn_ic.recwi_ngle_thart",
"icon": "https://play-lh.googleusercontent.com/B5hRjqoNuAorxrnZ0kp0LrEG1OfHGuMnTZyRJa8C4hXKGBqRHV_XFalCOD-a8lRxpug",
"developer": "IdaSapro",
"developerId": "5366181663728281831",
"priceText": "FREE",
"price": 0,
"free": true,
"summary": "perfect mcpe Addon for FNaF Security Breach lovers",
"scoreText": "4.5",
"score": 4.542857
},
{
"title": "Play Music: MP3 - Music Player",
"appId": "com.musicplayer.mp3playerfree.audioplayerapp",
"url": "https://play.google.com/store/apps/details?id=com.musicplayer.mp3playerfree.audioplayerapp",
"icon": "https://play-lh.googleusercontent.com/Oew6nADPg2KjJ2eFKjKGxgIVKVSE7fI2cOyriVXnjW5qq97UHPfOaJVEzbjwE7T0EA",
"developer": "Tap into Apps",
"developerId": "Tap+into+Apps",
"priceText": "FREE",
"price": 0,
"free": true,
"summary": "MP3 Player to Play music & Playlist with Stunning HD Quality Sound via music app",
"scoreText": "0.0",
"score": 0
},
{
"title": "Poppy: Huggy Wuggy MOD MPCE",
"appId": "com.appblockgames.poppy.game.huggy.wuggy.mod.mcpe",
"url": "https://play.google.com/store/apps/details?id=com.appblockgames.poppy.game.huggy.wuggy.mod.mcpe",
"icon": "https://play-lh.googleusercontent.com/FX0Lp1T6mPXp8Nafug-pvtHDdcZV0pjNa9_fB4Gt_SnQJD7UI1wMuTVTJTokLh4FvslF",
"developer": "Master for Minecraft",
"developerId": "5713672414955811747",
"priceText": "FREE",
"price": 0,
"free": true,
"summary": "Experience horror with Huggy Wuggy Poppy Playtime mod addon for Minecraft PE",
"scoreText": "4.7",
"score": 4.6923075
},
{
"title": "المشغل العائم",
"appId": "com.irap.abdoo",
"url": "https://play.google.com/store/apps/details?id=com.irap.abdoo",
"icon": "https://play-lh.googleusercontent.com/Ki4Cfb3O3F63_iiLd6myoQxrcywFsTSBDcY2VdRxwD3OPkoQ-k2VekgA-q4Fw1iL1JM",
"developer": "Abdelkader Raja",
"developerId": "Abdelkader+Raja",
"priceText": "FREE",
"price": 0,
"free": true,
"summary": "Application to play songs and search engine for songs in the studio",
"scoreText": "3.2",
"score": 3.25
},
{
"title": "Hint:Toca Boca Life World Town",
"appId": "com.Gvlxx17.Life.BOCA__17",
"url": "https://play.google.com/store/apps/details?id=com.Gvlxx17.Life.BOCA__17",
"icon": "https://play-lh.googleusercontent.com/YObktYAzSpgKKKzBfyeB7BbdZDGsux11Ow9jT83t9WU6z7uPopk2PvDWjvcql-8HiGM",
"developer": "Gvlxx17",
"developerId": "Gvlxx17",
"priceText": "FREE",
"price": 0,
"free": true,
"summary": "Guia my town Toca boca Life World Pets Stable we provide guides,,Gameplay tricks",
"scoreText": "0.0",
"score": 0
},
{
"title": "Baby Sister In Yellow 3 Guide",
"appId": "com.quartill.babysisterinyellowbip",
"url": "https://play.google.com/store/apps/details?id=com.quartill.babysisterinyellowbip",
"icon": "https://play-lh.googleusercontent.com/yRpb1hT9v4wUcWt4ePmFpeHEzuJ3T9UvZCt1i_40-UZYXHKCpTCSlJBL3Gyoo5F5KQ",
"developer": "Quart Lab",
"developerId": "Quart+Lab",
"priceText": "FREE",
"price": 0,
"free": true,
"summary": "Baby Sister In Yellow 3 Guide one of the best walkthrough",
"scoreText": "0.0",
"score": 0
},
{
"title": "AnimeFanz",
"appId": "com.aniskinsons.ani",
"url": "https://play.google.com/store/apps/details?id=com.aniskinsons.ani",
"icon": "https://play-lh.googleusercontent.com/bB7Y3IbzmGcRrUNEIPgKKPOa9z25uNtLSu39-S8DwkSIdZzNlpfO48lS9zPf58PicsI",
"developer": "MT Tech BD",
"developerId": "MT+Tech+BD",
"priceText": "FREE",
"price": 0,
"free": true,
"summary": "AnimeFanz track and manage anime lists",
"scoreText": "4.4",
"score": 4.352941
},
{
"title": "HD Video Screen Mirroring",
"appId": "com.bangaye.manmiroring",
"url": "https://play.google.com/store/apps/details?id=com.bangaye.manmiroring",
"icon": "https://play-lh.googleusercontent.com/NZK5cTnVAi2Vb5Oa_UEXv38xCh6U1e4QBZR4nnLpo5Xg0ED3yqo4T4zYhEs4op1kVyg",
"developer": "Digitalweblogs",
"developerId": "Digitalweblogs",
"priceText": "FREE",
"price": 0,
"free": true,
"summary": "Screen Mirroring is one of the best yet most simple and easy to use screen app",
"scoreText": "0.0",
"score": 0
},
{
"title": "XXVI Video Player - HD Player",
"appId": "com.videoplayer.nowonlinecx",
"url": "https://play.google.com/store/apps/details?id=com.videoplayer.nowonlinecx",
"icon": "https://play-lh.googleusercontent.com/cb__U3PhSzz57u2oABpiKzL46OEI5ilRSc8cMySKS4oGQw9wjVJBtNV6r24FNZW_Kas",
"developer": "vidzone X",
"developerId": "vidzone+X",
"priceText": "FREE",
"price": 0,
"free": true,
"summary": "The most powerful Media player For Android.",
"scoreText": "4.1",
"score": 4.142857
},
{
"title": "Document Scan: PDF Scanner App",
"appId": "io.documentscanner.pdfreader.pdfscan",
"url": "https://play.google.com/store/apps/details?id=io.documentscanner.pdfreader.pdfscan",
"icon": "https://play-lh.googleusercontent.com/9oEj4Q8B8tA-d-Q6Af1YIMNCiLJxtlzz4Q6TMH9TGvXV9SROWHMyuxlD9oLs66lejJr-",
"developer": "AdTrue Global",
"developerId": "AdTrue+Global",
"priceText": "FREE",
"price": 0,
"free": true,
"summary": "Turn your device into a powerful portable document scanner !",
"scoreText": "3.1",
"score": 3.0833333
},
{
"title": "Bilberry Speed Pro",
"appId": "com.unity.bilberryspeedpros",
"url": "https://play.google.com/store/apps/details?id=com.unity.bilberryspeedpros",
"icon": "https://play-lh.googleusercontent.com/V5I78Nr9Eohs3b_Eex_vcFWt1k8Hzb0nnVEvNC2gN4pgWvECfl1Y6upmcNYKFsbNPIeW",
"developer": "marieta",
"developerId": "marieta",
"priceText": "FREE",
"price": 0,
"free": true,
"summary": "Bilberry Speed Pro is the best tool to test speed in one tap!",
"scoreText": "0.0",
"score": 0
},
{
"title": "Equalizer Bass & Volume Boost",
"appId": "equalizer.bassboost.volume.booster",
"url": "https://play.google.com/store/apps/details?id=equalizer.bassboost.volume.booster",
"icon": "https://play-lh.googleusercontent.com/3thfSA3zJDi_0vpaBV1dFZPTFR_I29kr1YCXH21d9LO1Ct2hur31ngvoUQgmE9l5F2ww",
"developer": "Nuts Mobile Inc.",
"developerId": "9056512894416271685",
"priceText": "FREE",
"price": 0,
"free": true,
"summary": "Enjoy music with Equalizer & Bass Booster, Boost phone sound with Volume Booster",
"scoreText": "4.9",
"score": 4.875
},
{
"title": "Hi Neighbor Alpha 4 Overview",
"appId": "com.personalization.hineighbor.alpha4game",
"url": "https://play.google.com/store/apps/details?id=com.personalization.hineighbor.alpha4game",
"icon": "https://play-lh.googleusercontent.com/cppSTJQypB0gmUy3A9o_HkKaoj9V-zq_gcL7dikHAM34wgdwsB5h5jKEpBQd7N1BNNg",
"developer": "amsyap",
"developerId": "amsyap",
"priceText": "FREE",
"price": 0,
"free": true,
"summary": "Fan of Hi Neighbor alpha 4 Overview help.",
"scoreText": "3.0",
"score": 3
},
{
"title": "Toca Boca Life World Pets Guia",
"appId": "com.tipstocatown_city_hospitaltown_bocas2.toca10buildyourownworld",
"url": "https://play.google.com/store/apps/details?id=com.tipstocatown_city_hospitaltown_bocas2.toca10buildyourownworld",
"icon": "https://play-lh.googleusercontent.com/9cfLWnulMp_H8XFZT8fmAszUAnwS-E8eNOLdvNY70Mg3YPYj7rzKa64yXWtp-g2GIJbT",
"developer": "Studio Nook",
"developerId": "Studio+Nook",
"priceText": "FREE",
"price": 0,
"free": true,
"summary": "Guia Toca boca Life World town Kitty Guide, we provide guides,gameplay tips",
"scoreText": "3.5",
"score": 3.5
},
{
"title": "Happy Toca Boca Life Guide",
"appId": "com.tocmehappyguide.tipstocalifeapp",
"url": "https://play.google.com/store/apps/details?id=com.tocmehappyguide.tipstocalifeapp",
"icon": "https://play-lh.googleusercontent.com/SO1v3iN8I0aFPFcbwpgCZ7Edy4mdyMhRhww9tegNZdRzN06nrInErePlC2A68snYxA",
"developer": "ArnoDev",
"developerId": "ArnoDev",
"priceText": "FREE",
"price": 0,
"free": true,
"summary": "Enjoy the new Toca Life World Productive Routine Makeover 2022",
"scoreText": "3.1",
"score": 3.0769231
},
{
"title": "Doctor Clean:One-tap Booster",
"appId": "com.dr.clean",
"url": "https://play.google.com/store/apps/details?id=com.dr.clean",
"icon": "https://play-lh.googleusercontent.com/_7-G2fOkMY7dXfEtDzZ2c7SQBWDukhZsofF_wFU0Q_nT1H3Ekmh-ROF9m09gosMUCQ",