-
Notifications
You must be signed in to change notification settings - Fork 0
/
json
1445 lines (1444 loc) · 76.2 KB
/
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
Warning: Undefined variable $results in C:\Users\elija\OneDrive\Desktop\Programs\web_crawler\index.php on line 124
{
"Title": "YouTube",
"Description": "Enjoy the videos and music you love, upload original content, and share it all with friends, family, and the world on YouTube.",
"Keywords": "video, sharing, camera phone, video phone, free, upload",
"URL": "https://youtube.com"
}
{
"Title": "Google",
"Description": "Search the world's information, including webpages, images, videos and more. Google has many special features to help you find exactly what you're looking for.",
"Keywords": "No keywords found",
"URL": "https://www.google.com/"
}
Failed to fetch content for URL: https://reddit.com
{
"Title": "Google",
"Description": "Search the world's information, including webpages, images, videos and more. Google has many special features to help you find exactly what you're looking for.",
"Keywords": "No keywords found",
"URL": "https://www.google.com/webhp?tab=ww"
}
{
"Title": "Google Images",
"Description": "Google Images. The most comprehensive image search on the web.",
"Keywords": "No keywords found",
"URL": "https://www.google.com/imghp?hl=en&tab=wi"
}
{
"Title": " Google Maps ",
"Description": " Find local businesses, view maps and get driving directions in Google Maps. ",
"Keywords": "No keywords found",
"URL": "https://maps.google.com/maps?hl=en&tab=wl"
}
{
"Title": "Android Apps on Google Play",
"Description": "Enjoy millions of the latest Android apps, games, music, movies, TV, books, magazines & more. Anytime, anywhere, across your devices.",
"Keywords": "No keywords found",
"URL": "https://play.google.com/?hl=en&tab=w8"
}
{
"Title": "YouTube",
"Description": "Enjoy the videos and music you love, upload original content, and share it all with friends, family, and the world on YouTube.",
"Keywords": "video, sharing, camera phone, video phone, free, upload",
"URL": "https://www.youtube.com/?tab=w1"
}
{
"Title": "Google News",
"Description": "Comprehensive up-to-date news coverage, aggregated from sources all over the world by Google News.",
"Keywords": "No keywords found",
"URL": "https://news.google.com/?tab=wn"
}
{
"Title": "Gmail",
"Description": "Gmail is email that\u2019s intuitive, efficient, and useful. 15 GB of storage, less spam, and mobile access.",
"Keywords": "No keywords found",
"URL": "https://mail.google.com/mail/?tab=wm"
}
{
"Title": "Google Drive: Sign-in",
"Description": "Access Google Drive with a Google account (for personal use) or Google Workspace account (for business use).",
"Keywords": "No keywords found",
"URL": "https://drive.google.com/?tab=wo"
}
{
"Title": "Browse All of Google's Products & Services - Google",
"Description": "Browse a list of Google products designed to help you work and play, stay organized, get answers, keep in touch, grow your business, and more.",
"Keywords": "No keywords found",
"URL": "https://www.google.com/intl/en/about/products?tab=wh"
}
{
"Title": "Google Calendar - Sign in to Access & Edit Your Schedule",
"Description": "Access Google Calendar with a Google account (for personal use) or Google Workspace account (for business use).",
"Keywords": "No keywords found",
"URL": "https://calendar.google.com/calendar?tab=wc"
}
{
"Title": "Google Translate",
"Description": "Google's service, offered free of charge, instantly translates words, phrases, and web pages between English and over 100 other languages.",
"Keywords": "translate, translations, translation, translator, machine translation, online translation",
"URL": "https://translate.google.com/?hl=en&tab=wT"
}
Failed to fetch content for URL: http://www.google.com/mobile/?hl=en&tab=wD
{
"Title": "Google Books",
"Description": "No description found",
"Keywords": "No keywords found",
"URL": "https://books.google.com/?hl=en&tab=wp"
}
{
"Title": "Google Shopping - Shop Online, Compare Prices & Where to Buy",
"Description": "Browse Google Shopping to find the products you\u00e2\u0080\u0099re looking for, track & compare prices, and decide where to buy online or in store.",
"Keywords": "No keywords found",
"URL": "https://www.google.com/shopping?hl=en&source=og&tab=wf"
}
{
"Title": "Blogger.com - Create a unique and beautiful blog easily.",
"Description": "Publish your passions your way. Whether you\u2019d like to share your knowledge, experiences or the latest news, create a unique and beautiful blog.",
"Keywords": "No keywords found",
"URL": "https://www.blogger.com/?tab=wj"
}
{
"Title": "Google Finance - Stock Market Prices, Real-time Quotes & Business News",
"Description": "Google Finance provides real-time market quotes, international exchanges, up-to-date financial news, and analytics to help you make more informed trading and investment decisions.",
"Keywords": "No keywords found",
"URL": "https://www.google.com/finance?tab=we"
}
{
"Title": "Google Photos: Edit, Organize, Search, and Backup Your Photos",
"Description": "Edit and enhance photos with AI-powered features like Magic Editor and Magic Eraser on Google Photos. Store, organize & search your memories.",
"Keywords": "No keywords found",
"URL": "https://photos.google.com/?tab=wq&pageId=none"
}
{
"Title": "Google Docs: Online Document & PDF Editor | Google Workspace",
"Description": "Create online documents and edit PDFs with Google Docs. Collaborate in real-time from any device and use AI to generate drafts, templates, and more.",
"Keywords": "No keywords found",
"URL": "https://docs.google.com/document/?usp=docs_alc"
}
{
"Title": "Sign in - Google Accounts",
"Description": "",
"Keywords": "No keywords found",
"URL": "https://accounts.google.com/ServiceLogin?hl=en&passive=true&continue=https://www.google.com/&ec=GAZAAQ"
}
{
"Title": "Search settings",
"Description": "No description found",
"Keywords": "No keywords found",
"URL": "http://www.google.com/preferences?hl=en"
}
{
"Title": "Search settings",
"Description": "No description found",
"Keywords": "No keywords found",
"URL": "https://www.google.com/preferences?hl=en"
}
{
"Title": "Google - Search Customization",
"Description": "No description found",
"Keywords": "No keywords found",
"URL": "http://www.google.com/history/optout?hl=en"
}
{
"Title": "Google Advanced Search",
"Description": "No description found",
"Keywords": "No keywords found",
"URL": "https://www.google.com/advanced_search?hl=en&authuser=0"
}
{
"Title": " Google Ads - Get Customers and Sell More with Online Advertising ",
"Description": "Discover how online advertising with Google Ads can help grow your business. Get customers and sell more with our digital advertising platform.",
"Keywords": "No keywords found",
"URL": "https://www.google.com/intl/en/ads/"
}
{
"Title": "No title found",
"Description": "No description found",
"Keywords": "No keywords found",
"URL": "https://www.google.com/services/"
}
{
"Title": "Google - About Google, Our Culture & Company News",
"Description": "Stay up to date with Google company news and products. Discover stories about our culture, philosophy, and how Google technology is impacting others.",
"Keywords": "No keywords found",
"URL": "https://www.google.com/intl/en/about.html"
}
{
"Title": "",
"Description": "No description found",
"Keywords": "No keywords found",
"URL": "https://www.google.com/intl/en/policies/privacy/"
}
{
"Title": "",
"Description": "No description found",
"Keywords": "No keywords found",
"URL": "https://www.google.com/intl/en/policies/terms/"
}
Failed to fetch or empty content for URL: https://reddit.com
{
"Title": "Sign in - Google Accounts",
"Description": "",
"Keywords": "No keywords found",
"URL": "https://accounts.google.com/ServiceLogin?hl=en&passive=true&continue=https://www.google.com/webhp%3Ftab%3Dww&ec=GAZAAQ"
}
{
"Title": "Google",
"Description": "Search the world's information, including webpages, images, videos and more. Google has many special features to help you find exactly what you're looking for.",
"Keywords": "No keywords found",
"URL": "https://www.google.com/webhp?tab=iw"
}
{
"Title": "Google Images",
"Description": "Google Images. The most comprehensive image search on the web.",
"Keywords": "No keywords found",
"URL": "https://www.google.com/imghp?hl=en&tab=ii"
}
{
"Title": " Google Maps ",
"Description": " Find local businesses, view maps and get driving directions in Google Maps. ",
"Keywords": "No keywords found",
"URL": "https://maps.google.com/maps?hl=en&tab=il"
}
{
"Title": "Android Apps on Google Play",
"Description": "Enjoy millions of the latest Android apps, games, music, movies, TV, books, magazines & more. Anytime, anywhere, across your devices.",
"Keywords": "No keywords found",
"URL": "https://play.google.com/?hl=en&tab=i8"
}
{
"Title": "YouTube",
"Description": "Enjoy the videos and music you love, upload original content, and share it all with friends, family, and the world on YouTube.",
"Keywords": "video, sharing, camera phone, video phone, free, upload",
"URL": "https://www.youtube.com/?tab=i1"
}
{
"Title": "Google News",
"Description": "Comprehensive up-to-date news coverage, aggregated from sources all over the world by Google News.",
"Keywords": "No keywords found",
"URL": "https://news.google.com/?tab=in"
}
{
"Title": "Gmail",
"Description": "Gmail is email that\u2019s intuitive, efficient, and useful. 15 GB of storage, less spam, and mobile access.",
"Keywords": "No keywords found",
"URL": "https://mail.google.com/mail/?tab=im"
}
{
"Title": "Google Drive: Sign-in",
"Description": "Access Google Drive with a Google account (for personal use) or Google Workspace account (for business use).",
"Keywords": "No keywords found",
"URL": "https://drive.google.com/?tab=io"
}
{
"Title": "Browse All of Google's Products & Services - Google",
"Description": "Browse a list of Google products designed to help you work and play, stay organized, get answers, keep in touch, grow your business, and more.",
"Keywords": "No keywords found",
"URL": "https://www.google.com/intl/en/about/products?tab=ih"
}
{
"Title": "Google Calendar - Sign in to Access & Edit Your Schedule",
"Description": "Access Google Calendar with a Google account (for personal use) or Google Workspace account (for business use).",
"Keywords": "No keywords found",
"URL": "https://calendar.google.com/calendar?tab=ic"
}
{
"Title": "Google Translate",
"Description": "Google's service, offered free of charge, instantly translates words, phrases, and web pages between English and over 100 other languages.",
"Keywords": "translate, translations, translation, translator, machine translation, online translation",
"URL": "https://translate.google.com/?hl=en&tab=iT"
}
Failed to fetch content for URL: http://www.google.com/mobile/?hl=en&tab=iD
{
"Title": "Google Books",
"Description": "No description found",
"Keywords": "No keywords found",
"URL": "https://books.google.com/?hl=en&tab=ip"
}
{
"Title": "Google Shopping - Shop Online, Compare Prices & Where to Buy",
"Description": "Browse Google Shopping to find the products you\u00e2\u0080\u0099re looking for, track & compare prices, and decide where to buy online or in store.",
"Keywords": "No keywords found",
"URL": "https://www.google.com/shopping?hl=en&source=og&tab=if"
}
{
"Title": "Blogger.com - Create a unique and beautiful blog easily.",
"Description": "Publish your passions your way. Whether you\u2019d like to share your knowledge, experiences or the latest news, create a unique and beautiful blog.",
"Keywords": "No keywords found",
"URL": "https://www.blogger.com/?tab=ij"
}
{
"Title": "Google Finance - Stock Market Prices, Real-time Quotes & Business News",
"Description": "Google Finance provides real-time market quotes, international exchanges, up-to-date financial news, and analytics to help you make more informed trading and investment decisions.",
"Keywords": "No keywords found",
"URL": "https://www.google.com/finance?tab=ie"
}
{
"Title": "Google Photos: Edit, Organize, Search, and Backup Your Photos",
"Description": "Edit and enhance photos with AI-powered features like Magic Editor and Magic Eraser on Google Photos. Store, organize & search your memories.",
"Keywords": "No keywords found",
"URL": "https://photos.google.com/?tab=iq&pageId=none"
}
{
"Title": "Sign in - Google Accounts",
"Description": "",
"Keywords": "No keywords found",
"URL": "https://accounts.google.com/ServiceLogin?hl=en&passive=true&continue=https://www.google.com/imghp%3Fhl%3Den%26tab%3Dwi&ec=GAZAAg"
}
{
"Title": "Google Advanced Image Search",
"Description": "No description found",
"Keywords": "No keywords found",
"URL": "https://www.google.com/advanced_image_search?hl=en&authuser=0"
}
{
"Title": "Enable JavaScript to see Google Maps - Google Maps Help",
"Description": "To use Google Maps, you need to turn on JavaScript in your browser, like Chrome or Firefox. If you don\u00e2\u0080\u0099t have JavaScript turned on, you\u00e2\u0080\u0099ll see an empty page when you go to Google Maps. To enable Java",
"Keywords": "No keywords found",
"URL": "https://support.google.com/maps/?hl=en&authuser=0&p=no_javascript"
}
{
"Title": "Android Apps on Google Play",
"Description": "Enjoy millions of the latest Android apps, games, music, movies, TV, books, magazines & more. Anytime, anywhere, across your devices.",
"Keywords": "No keywords found",
"URL": "https://play.google.com/store/games"
}
{
"Title": "Android Apps on Google Play",
"Description": "Enjoy millions of the latest Android apps, games, music, movies, TV, books, magazines & more. Anytime, anywhere, across your devices.",
"Keywords": "No keywords found",
"URL": "https://play.google.com/store/apps"
}
{
"Title": "Movies - Movies & TV on Google Play",
"Description": "Enjoy millions of the latest Android apps, games, music, movies, TV, books, magazines & more. Anytime, anywhere, across your devices.",
"Keywords": "No keywords found",
"URL": "https://play.google.com/store/movies"
}
{
"Title": "Books on Google Play",
"Description": "Discover ebooks, audiobooks, manga, and comics! Explore best sellers, romance, sci-fi, thrillers, self-help, business titles, and more from Google Play Books.",
"Keywords": "No keywords found",
"URL": "https://play.google.com/store/books"
}
{
"Title": "Kids - Android Apps on Google Play",
"Description": "Enjoy millions of the latest Android apps, games, music, movies, TV, books, magazines & more. Anytime, anywhere, across your devices.",
"Keywords": "No keywords found",
"URL": "https://play.google.com/store/apps/category/FAMILY"
}
{
"Title": "Privacy Policy \u00e2\u0080\u0093 Privacy & Terms \u00e2\u0080\u0093 Google",
"Description": "No description found",
"Keywords": "No keywords found",
"URL": "https://policies.google.com/privacy"
}
{
"Title": "Google Terms of Service \u00e2\u0080\u0093 Privacy & Terms \u00e2\u0080\u0093 Google",
"Description": "No description found",
"Keywords": "No keywords found",
"URL": "https://myaccount.google.com/termsofservice"
}
{
"Title": "Android Apps on Google Play",
"Description": "Enjoy millions of the latest Android apps, games, music, movies, TV, books, magazines & more. Anytime, anywhere, across your devices.",
"Keywords": "No keywords found",
"URL": "https://play.google.com/store/games?device=windows"
}
{
"Title": "Android Apps on Google Play",
"Description": "Enjoy millions of the latest Android apps, games, music, movies, TV, books, magazines & more. Anytime, anywhere, across your devices.",
"Keywords": "No keywords found",
"URL": "https://play.google.com/store/games?device=phone"
}
{
"Title": "Android Apps on Google Play",
"Description": "Enjoy millions of the latest Android apps, games, music, movies, TV, books, magazines & more. Anytime, anywhere, across your devices.",
"Keywords": "No keywords found",
"URL": "https://play.google.com/store/games?device=tablet"
}
{
"Title": "Android Apps on Google Play",
"Description": "Enjoy millions of the latest Android apps, games, music, movies, TV, books, magazines & more. Anytime, anywhere, across your devices.",
"Keywords": "No keywords found",
"URL": "https://play.google.com/store/games?device=tv"
}
{
"Title": "Android Apps on Google Play",
"Description": "Enjoy millions of the latest Android apps, games, music, movies, TV, books, magazines & more. Anytime, anywhere, across your devices.",
"Keywords": "No keywords found",
"URL": "https://play.google.com/store/games?device=chromebook"
}
{
"Title": "Android Apps on Google Play",
"Description": "Enjoy millions of the latest Android apps, games, music, movies, TV, books, magazines & more. Anytime, anywhere, across your devices.",
"Keywords": "No keywords found",
"URL": "https://play.google.com/store/games?device=watch"
}
{
"Title": "Join the Spearmint Snowstorm for icy rewards!",
"Description": "Prepare for a frosty adventure in the all-new Spearmint Snowstorm event! From Nov 15 - Dec 5, Jelly Queen, Mr. Toffee, and Nutcracker are frozen mid-race by a sudden blizzard! Free Gummi dragons at special levels to melt the ice and rescue your friends. But beware\u00e2\u0080\u0094Bubblegum Troll is lurking, holding frozen dragons hostage! Don\u00e2\u0080\u0099t miss this icy challenge! Available from level 250.",
"Keywords": "No keywords found",
"URL": "https://play.google.com/store/apps/eventdetails/4831241368897573928"
}
{
"Title": "Candy Crush Saga - Apps on Google Play",
"Description": "Spread jam, pop jelly, blast candies & master sugar sweet match-3 puzzle games.",
"Keywords": "No keywords found",
"URL": "https://play.google.com/store/apps/details?id=com.king.candycrushsaga"
}
{
"Title": "Chimera: unite your clan, defeat the boss, and earn rewards!",
"Description": "Introducing a terrifying new monster of mythical proportions - the Chimera!A result of knights revenant experiments in the stormwind wastes, the Chimera is a gargantuan creature filled with raw power. Unite your clan to take on this new boss and earn awesome rewards. Battle against the Chimera's four unique forms as they constantly rotate, and complete in-battle trials to get your hands on additional rewards. Good luck and happy raiding!",
"Keywords": "No keywords found",
"URL": "https://play.google.com/store/apps/eventdetails/4828193557580911959"
}
{
"Title": "RAID: Shadow Legends - Apps on Google Play",
"Description": "Masters of the Universe joins RAID: Collect He-Man and Skeletor now!",
"Keywords": "No keywords found",
"URL": "https://play.google.com/store/apps/details?id=com.plarium.raidlegends"
}
{
"Title": "Delta Force - Apps on Google Play",
"Description": "Delta Force is a modern team-based tactical cross-platform shooter.",
"Keywords": "No keywords found",
"URL": "https://play.google.com/store/apps/details?id=com.proxima.dfm"
}
{
"Title": "New Event! Dragon Nest!",
"Description": "Embark on a magical journey to raise dragons with your friends and claim the ultimate prize in Dragon Nest!",
"Keywords": "No keywords found",
"URL": "https://play.google.com/store/apps/eventdetails/4828854376348847308"
}
{
"Title": "Royal Match - Apps on Google Play",
"Description": "Decorate King Robert's Castle by solving puzzles along the way!",
"Keywords": "No keywords found",
"URL": "https://play.google.com/store/apps/details?id=com.dreamgames.royalmatch"
}
{
"Title": "Treat yourself to an adorable dog game",
"Description": "We\u00e2\u0080\u0099ve fetched some of our top picks featuring man\u00e2\u0080\u0099s best friend. From taking care of puppies at an animal hospital to running a dog hotel, these canine-themed choices will have you wagging your tail with joy.",
"Keywords": "No keywords found",
"URL": "https://play.google.com/store/apps/editorial?id=mc_editorialseasonal_puppy_games_fcp"
}
{
"Title": "Games for aspiring game developers",
"Description": "Imagine you never had to face the bittersweet feeling of completing the final level of a beloved game. That\u00e2\u0080\u0099s the case with these innovative platforms that encourage players to design and share their creations using built-in editing tools. Enjoy tons of user-generated levels and minigames made by fellow fans or harness your creativity to develop your own.",
"Keywords": "No keywords found",
"URL": "https://play.google.com/store/apps/editorial?id=mc_editorialevergreen_games_for_aspiring_game_developers_fcp"
}
{
"Title": "Adventures for budding heroes",
"Description": "If you\u00e2\u0080\u0099re feeling the itch for a new quest, dive into this assembly of adventures for would-be explorers. Lose yourself in a new world, from story-driven epics to cozy slice-of-life journeys.",
"Keywords": "No keywords found",
"URL": "https://play.google.com/store/apps/editorial?id=mc_editorialevergreen_top_k_adventure_games_fcp"
}
{
"Title": "Toca Boca World - Apps on Google Play",
"Description": "Create, customize & explore your Toca Boca story! Endless fun & creativity await",
"Keywords": "No keywords found",
"URL": "https://play.google.com/store/apps/details?id=com.tocaboca.tocalifeworld"
}
{
"Title": "Sonic Rumble - Apps on Google Play",
"Description": "RUMBLE WITH SONIC & FRIENDS",
"Keywords": "No keywords found",
"URL": "https://play.google.com/store/apps/details?id=com.sega.sonicrumble"
}
{
"Title": "Arcane returns on-screen and arrives in-game",
"Description": "To celebrate the highly-anticipated final season of Arcane, some of your favorite League of Legends spinoff games are bringing Jinx, Vi, and other Arcane tie-ins into the fray. Dive deeper into this epic narrative as you enjoy the stunning animation and heart-pounding twists of what\u00e2\u0080\u0099s sure to be an unforgettable series finale.",
"Keywords": "No keywords found",
"URL": "https://play.google.com/store/apps/editorial?id=mc_games_editorialmd_arcane_final_season_riot_wildrift_teamfight_game_tieins_fcp"
}
{
"Title": "EA SPORTS FC\u00e2\u0084\u00a2 Mobile Soccer - Apps on Google Play",
"Description": "FIFA Mobile is now EA SPORTS FC\u00e2\u0084\u00a2 Mobile! Kick off with soccer stars today.",
"Keywords": "No keywords found",
"URL": "https://play.google.com/store/apps/details?id=com.ea.gp.fifamobile"
}
{
"Title": "The best games of 2024",
"Description": "Our top games this year have shown us the importance of community and what we can accomplish when we come together through play. Whether it\u00e2\u0080\u0099s teaming up to defeat giant bosses or competing across playful obstacle courses and massive maps, we\u00e2\u0080\u0099ve had hours of fun immersed in other worlds. Here are Play\u00e2\u0080\u0099s best games of 2024.",
"Keywords": "No keywords found",
"URL": "https://play.google.com/store/apps/editorial?id=mc_bestof2024_games_fcp"
}
{
"Title": "Roblox - Apps on Google Play",
"Description": "Your next adventure awaits.",
"Keywords": "No keywords found",
"URL": "https://play.google.com/store/apps/details?id=com.roblox.client"
}
{
"Title": "Subway Surfers - Apps on Google Play",
"Description": "Help Jake, Tricky & Fresh escape from the grumpy Inspector and his dog!",
"Keywords": "No keywords found",
"URL": "https://play.google.com/store/apps/details?id=com.kiloo.subwaysurf"
}
{
"Title": "Free Fire: Winterlands - Apps on Google Play",
"Description": "10-minute Survival Shooter!",
"Keywords": "No keywords found",
"URL": "https://play.google.com/store/apps/details?id=com.dts.freefireth"
}
{
"Title": "Call of Duty: Mobile Season 10 - Apps on Google Play",
"Description": "Fun, Battle Royale & Multiplayer FPS Action!",
"Keywords": "No keywords found",
"URL": "https://play.google.com/store/apps/details?id=com.activision.callofduty.shooter"
}
{
"Title": "8 Ball Pool - Apps on Google Play",
"Description": "Play online multiplayer or PvP Pool games and compete with your friends!",
"Keywords": "No keywords found",
"URL": "https://play.google.com/store/apps/details?id=com.miniclip.eightballpool"
}
{
"Title": "Among Us - Apps on Google Play",
"Description": "Join your crewmates in a multiplayer game of teamwork and betrayal!",
"Keywords": "No keywords found",
"URL": "https://play.google.com/store/apps/details?id=com.innersloth.spacemafia"
}
{
"Title": "Geometry Dash Lite - Apps on Google Play",
"Description": "Jump and fly your way through danger in this rythm-based action platformer!",
"Keywords": "No keywords found",
"URL": "https://play.google.com/store/apps/details?id=com.robtopx.geometryjumplite"
}
{
"Title": "Magic Tiles 3 - Apps on Google Play",
"Description": "Love music games? Tap magic tiles in this fun, no-wifi game and enjoy the beat",
"Keywords": "No keywords found",
"URL": "https://play.google.com/store/apps/details?id=com.youmusic.magictiles"
}
{
"Title": "Brawl Stars - Apps on Google Play",
"Description": "Action-packed battle royals! Team up with friends in epic 3v3 and 5v5 games.",
"Keywords": "No keywords found",
"URL": "https://play.google.com/store/apps/details?id=com.supercell.brawlstars"
}
{
"Title": "Pok\u00c3\u00a9mon GO - Apps on Google Play",
"Description": "Discover Pok\u00c3\u00a9mon worldwide",
"Keywords": "No keywords found",
"URL": "https://play.google.com/store/apps/details?id=com.nianticlabs.pokemongo"
}
{
"Title": "PUBG MOBILE - Apps on Google Play",
"Description": "Choice of Over 1 Billion Players! Ultimate Battle Royale On Mobile\u00ef\u00bc\u0081",
"Keywords": "No keywords found",
"URL": "https://play.google.com/store/apps/details?id=com.tencent.ig"
}
{
"Title": "Whiteout Survival - Apps on Google Play",
"Description": "Idle, strategy, survival\u00e2\u0080\u0094experience all three upon the frozen wastes!",
"Keywords": "No keywords found",
"URL": "https://play.google.com/store/apps/details?id=com.gof.global"
}
{
"Title": "Mob Control - Apps on Google Play",
"Description": "Join Mob Control & Transformers: Grow your army and lead your mobs to victory",
"Keywords": "No keywords found",
"URL": "https://play.google.com/store/apps/details?id=com.vincentb.MobControl"
}
{
"Title": "Dice Dreams\u00e2\u0084\u00a2\u00ef\u00b8\u008f - Apps on Google Play",
"Description": "Roll the Dice and Build Your Kingdom - Can You Beat Your Friends?",
"Keywords": "No keywords found",
"URL": "https://play.google.com/store/apps/details?id=com.superplaystudios.dicedreams"
}
{
"Title": "Happy Color\u00c2\u00ae: Coloring Book - Apps on Google Play",
"Description": "Coloring art game for adults: paint by number on varied digital art templates",
"Keywords": "No keywords found",
"URL": "https://play.google.com/store/apps/details?id=com.pixel.art.coloring.color.number"
}
{
"Title": "Wordscapes - Apps on Google Play",
"Description": "Relax your brain with this fun word puzzle game and beautiful landscapes!",
"Keywords": "No keywords found",
"URL": "https://play.google.com/store/apps/details?id=com.peoplefun.wordcross"
}
{
"Title": "Stumble Guys - Apps on Google Play",
"Description": "Fun knockout battle royale, play with your friends!",
"Keywords": "No keywords found",
"URL": "https://play.google.com/store/apps/details?id=com.kitkagames.fallbuddies"
}
{
"Title": "Clash of Clans - Apps on Google Play",
"Description": "Epic combat strategy game. Build your village, train your troops & go to battle!",
"Keywords": "No keywords found",
"URL": "https://play.google.com/store/apps/details?id=com.supercell.clashofclans"
}
{
"Title": "Angry Birds 2 - Apps on Google Play",
"Description": "Play the Angry Birds game enjoyed by millions of players every day!",
"Keywords": "No keywords found",
"URL": "https://play.google.com/store/apps/details?id=com.rovio.baba"
}
{
"Title": "Free Fire MAX - Apps on Google Play",
"Description": "MAX Battle Royale Experience",
"Keywords": "No keywords found",
"URL": "https://play.google.com/store/apps/details?id=com.dts.freefiremax"
}
{
"Title": "Township - Apps on Google Play",
"Description": "Farm, build, and beat match-3 levels \u00e2\u0080\u0093 a simulation game for the whole family!",
"Keywords": "No keywords found",
"URL": "https://play.google.com/store/apps/details?id=com.playrix.township"
}
{
"Title": "Klondike Adventures: Farm Game - Apps on Google Play",
"Description": "Farming games: Harvest crops and Grow your own farm",
"Keywords": "No keywords found",
"URL": "https://play.google.com/store/apps/details?id=com.vizorapps.klondike"
}
{
"Title": "Evony: The King's Return - Apps on Google Play",
"Description": "Move and Shoot! Build Your Empire, Explore Difference In Evony Now!",
"Keywords": "No keywords found",
"URL": "https://play.google.com/store/apps/details?id=com.topgamesinc.evony"
}
{
"Title": "DRAGON BALL LEGENDS - Apps on Google Play",
"Description": "Summon your favorite DRAGON BALL characters for battle in this anime action game",
"Keywords": "No keywords found",
"URL": "https://play.google.com/store/apps/details?id=com.bandainamcoent.dblegends_ww"
}
{
"Title": "Clash Royale - Apps on Google Play",
"Description": "Clash Royale is a real-time, head-to-head battle game set in the Clash Universe.",
"Keywords": "No keywords found",
"URL": "https://play.google.com/store/apps/details?id=com.supercell.clashroyale"
}
{
"Title": "Lords Mobile: Kingdom Wars - Apps on Google Play",
"Description": "Wage MMORPG battles in this strategy game! Conquer kingdoms to build an empire!",
"Keywords": "No keywords found",
"URL": "https://play.google.com/store/apps/details?id=com.igg.android.lordsmobile"
}
{
"Title": "Gardenscapes - Apps on Google Play",
"Description": "Create your own garden and solve match-3 puzzles in this redesign game!",
"Keywords": "No keywords found",
"URL": "https://play.google.com/store/apps/details?id=com.playrix.gardenscapes"
}
{
"Title": "Homescapes - Apps on Google Play",
"Description": "Help Austin renovate his home and solve exciting match-3 puzzles along the way!",
"Keywords": "No keywords found",
"URL": "https://play.google.com/store/apps/details?id=com.playrix.homescapes"
}
{
"Title": "1945 Air Force: Airplane games - Apps on Google Play",
"Description": "Airplane game, Arcade games, Arcade shooter. Choose an airplane to fight",
"Keywords": "No keywords found",
"URL": "https://play.google.com/store/apps/details?id=com.os.airforce"
}
{
"Title": "Mobile Legends: Bang Bang - Apps on Google Play",
"Description": "Play the 5v5 MOBA game on mobile with players worldwide.",
"Keywords": "No keywords found",
"URL": "https://play.google.com/store/apps/details?id=com.mobile.legends"
}
{
"Title": "Hungry Shark Evolution - Apps on Google Play",
"Description": "Eat & evolve your shark in the ultimate shark survival game!",
"Keywords": "No keywords found",
"URL": "https://play.google.com/store/apps/details?id=com.fgol.HungrySharkEvolution"
}
{
"Title": "Cubes Empire Champions - Apps on Google Play",
"Description": "Blast, crush & match royal cubes in this awesome & fun cube matching puzzle game",
"Keywords": "No keywords found",
"URL": "https://play.google.com/store/apps/details?id=com.champion.cubes"
}
{
"Title": "Asphalt Legends Unite - Apps on Google Play",
"Description": "Sports racing game to drift on the streets. Play online solo & multiplayer mode",
"Keywords": "No keywords found",
"URL": "https://play.google.com/store/apps/details?id=com.gameloft.android.ANMP.GloftA9HM"
}
{
"Title": "CookieRun: Kingdom - Apps on Google Play",
"Description": "Build your Cookie Kingdom and team! An epic town building & adventure RPG game",
"Keywords": "No keywords found",
"URL": "https://play.google.com/store/apps/details?id=com.devsisters.ck"
}
{
"Title": "Age of Apes - Apps on Google Play",
"Description": "Select Monkey Warriors! Win This Brutal Banana War!",
"Keywords": "No keywords found",
"URL": "https://play.google.com/store/apps/details?id=com.tap4fun.ape.gplay"
}
{
"Title": "Rise of Kingdoms: Lost Crusade - Apps on Google Play",
"Description": "The Best Civilization Strategy Game. Conquer with Greece, Rise to Greatnes.",
"Keywords": "No keywords found",
"URL": "https://play.google.com/store/apps/details?id=com.lilithgame.roc.gp"
}
{
"Title": "Idle Mafia - Tycoon Manager - Apps on Google Play",
"Description": "Build your own Mafia empire, leave your legacy.",
"Keywords": "No keywords found",
"URL": "https://play.google.com/store/apps/details?id=com.gamemaker5.idlemafia"
}
{
"Title": "Return to the dream with the clip-winged traveler, Sunday",
"Description": "Former Oak Family head who is loving, selfless, and dedicated, natural leader of the Sweetdream Paradise.The dream of the Order has dissipated. The traveler whose wings were clipped... whereto shall his footsteps lead?Sunday is a support character that can make ally characters and their summons immediately take action. Additionally, Sunday can also regenerate a percentage of a designated character's Energy, as well as increase the character and their summons' DMG.",
"Keywords": "No keywords found",
"URL": "https://play.google.com/store/apps/eventdetails/4830853377792415030"
}
{
"Title": "Honkai: Star Rail - Apps on Google Play",
"Description": "HoYoverse's cosmic adventure strategy RPG with over 100 million downloads!",
"Keywords": "No keywords found",
"URL": "https://play.google.com/store/apps/details?id=com.HoYoverse.hkrpgoversea"
}
{
"Title": "Two warriors who can transform mid-battle arrive! Legends Festival 2024 on now!",
"Description": "As part of the Legends Festival 2024 celebration, Vegito and Goku Black both join the fight in Legends Limited rarity! During battle, Vegito can transform into Super Saiyan God SS, while Goku Black can transform into Super Saiyan Ros\u00c3\u00a9! You don't want to miss them!",
"Keywords": "No keywords found",
"URL": "https://play.google.com/store/apps/eventdetails/4828264127442287760"
}
{
"Title": "New Jungle Friend: Lion",
"Description": "A lion has quietly entered the jungle without disturbing its members. This lion is unique, exuding strength yet irresistibly cute, bringing a delightful surprise to the jungle family. Block Blast has also prepared many surprises for players, hidden within exciting challenges. Complete the levels and start your journey of discovery!",
"Keywords": "No keywords found",
"URL": "https://play.google.com/store/apps/eventdetails/4830607778385115132"
}
{
"Title": "Block Blast! - Apps on Google Play",
"Description": "Have fun with block puzzle games, match colors, and embark on a puzzle journey!",
"Keywords": "No keywords found",
"URL": "https://play.google.com/store/apps/details?id=com.block.juggle"
}
{
"Title": "Explore bundles to unlock your Toca Boca World",
"Description": "Check out our bundles with up to 50% off and explore, create, design and play out unlimited stories in Toca Boca World",
"Keywords": "No keywords found",
"URL": "https://play.google.com/store/apps/eventdetails/4828074761302536925"
}
{
"Title": "The Ballon d'Or Event",
"Description": "Enter the world of football's elite and celebrate brilliance with the Ballon d'Or Event. Experience brand new Chapters and Challenges, earn special rewards, and bring Ballon d'Or players to your team!",
"Keywords": "No keywords found",
"URL": "https://play.google.com/store/apps/eventdetails/4829281625804730522"
}
{
"Title": "Explore an unsettling biome in the free Garden Awakens game drop",
"Description": "Something stirs in the pale garden! Play the Garden Awakens drop today and explore an unsettling biome filled with pale oak trees and hanging moss. Follow a trail of eyeblossoms deeper into the darkness and come face to face with a creaking! Plus, build with new blocks, trim your armor with resin \u00e2\u0080\u0093 and more.",
"Keywords": "No keywords found",
"URL": "https://play.google.com/store/apps/eventdetails/4830928448126754823"
}
{
"Title": "Minecraft: Play with Friends - Apps on Google Play",
"Description": "Millions of crafters have smashed billions of blocks! Now you can join the fun!",
"Keywords": "No keywords found",
"URL": "https://play.google.com/store/apps/details?id=com.mojang.minecraftpe"
}
{
"Title": "Deck the halls with amazing decorations! Unwrap the Holiday Catalogue",
"Description": "Earn holiday currency and spend it on a flurry of decorations, expansion items and other cheerful rewards! For a limited time only \u00e2\u0080\u0093 don\u00e2\u0080\u0099t miss out!",
"Keywords": "No keywords found",
"URL": "https://play.google.com/store/apps/eventdetails/4831704948559058575"
}
{
"Title": "Hay Day - Apps on Google Play",
"Description": "Grow a farm, fish, and explore the Valley. Build your own slice of paradise!",
"Keywords": "No keywords found",
"URL": "https://play.google.com/store/apps/details?id=com.supercell.hayday"
}
{
"Title": "Celebrate Christmas with Piggy!",
"Description": "We\u00e2\u0080\u0099ve got merry surprises dashing your way!Ready for a very Coin Master Christmas?! Dash through the snow to discover new features, jolly deals and so much more!",
"Keywords": "No keywords found",
"URL": "https://play.google.com/store/apps/eventdetails/4830936158812913487"
}
{
"Title": "Coin Master - Apps on Google Play",
"Description": "Be the Coin Master: attack friends & collect coins in this fun adventure game!",
"Keywords": "No keywords found",
"URL": "https://play.google.com/store/apps/details?id=com.moonactive.coinmaster"
}
{
"Title": "50% off selected bundles!",
"Description": "Get the Phoenix Knight and Phoenix Guardian Bundles at a discount from the in-game store!",
"Keywords": "No keywords found",
"URL": "https://play.google.com/store/apps/eventdetails/4828869078389459995"
}
{
"Title": "MWT: Tank Battles - Apps on Google Play",
"Description": "Engage in Epic PvP Hi-Tech Tank Warfare with Drones and Aircraft!",
"Keywords": "No keywords found",
"URL": "https://play.google.com/store/apps/details?id=com.Shooter.ModernWarfront"
}
{
"Title": "Carrion - Apps on Google Play",
"Description": "HUNT. CONSUME. GROW. EVOLVE.",
"Keywords": "No keywords found",
"URL": "https://play.google.com/store/apps/details?id=com.devolverdigital.carrion"
}
{
"Title": "Grand Criminal Online: Sandbox - Apps on Google Play",
"Description": "Sandbox criminal open world action game with RP. Online life simulator game.",
"Keywords": "No keywords found",
"URL": "https://play.google.com/store/apps/details?id=ru.SOFFGames.gco"
}
{
"Title": "The Abandoned Planet - Apps on Google Play",
"Description": "A retro-inspired, pixel art, point and click adventure",
"Keywords": "No keywords found",
"URL": "https://play.google.com/store/apps/details?id=com.snapbreak.theabandonedplanet"
}
{
"Title": "Star Wars: Hunters\u00e2\u0084\u00a2 - Apps on Google Play",
"Description": "Battle in this multiplayer team combat mobile game in the STAR WARS galaxy!",
"Keywords": "No keywords found",
"URL": "https://play.google.com/store/apps/details?id=com.zynga.starwars.hunters"
}
{
"Title": "Clash of Destiny: Good vs Evil - Apps on Google Play",
"Description": "Choose your side in ever-shifting PvP Battles. Roguelike RPG Strategy awaits!",
"Keywords": "No keywords found",
"URL": "https://play.google.com/store/apps/details?id=com.clash.destiny"
}
{
"Title": "Loot Heroes: Fantasy RPG Games - Apps on Google Play",
"Description": "Squad up to become a star of the moba shooter brawl co-op role playing games!",
"Keywords": "No keywords found",
"URL": "https://play.google.com/store/apps/details?id=com.tapanywhere.lootheroes"
}
{
"Title": "Shadow Rival: Action War Game - Apps on Google Play",
"Description": "Dark Fantasy Hack and Slash, RPG Shadow Fight Offline Game",
"Keywords": "No keywords found",
"URL": "https://play.google.com/store/apps/details?id=com.ondi.shadow.rivals"
}
{
"Title": "NARUTO: Ultimate Ninja STORM - Apps on Google Play",
"Description": "A Naruto game full of 3D competitive action!",
"Keywords": "No keywords found",
"URL": "https://play.google.com/store/apps/details?id=com.bandainamcoent.ultimateninjastorm"
}
{
"Title": "Knights Go! - Apps on Google Play",
"Description": "\"Knights Go!\" is a Roguelike Vertical ACT game with seamless strikes and combos!",
"Keywords": "No keywords found",
"URL": "https://play.google.com/store/apps/details?id=com.knightsgo.uni.and"
}
{
"Title": "Archero 2 - Apps on Google Play",
"Description": "Roguelike 2.0: Bigger Better Faster!",
"Keywords": "No keywords found",
"URL": "https://play.google.com/store/apps/details?id=com.xq.archeroii"
}
{
"Title": "Hidden Objects: Seek & Find It - Apps on Google Play",
"Description": "Search & find hidden objects. Relax your mind with scavenger hunt puzzle games!",
"Keywords": "No keywords found",
"URL": "https://play.google.com/store/apps/details?id=find.hidden.objects.out.scavenger.hunt.puzzle.games.free"
}
{
"Title": "Nuts Sort - Color Puzzle Games - Apps on Google Play",
"Description": "Train Your Brain in this fun nuts and bolts color sort game! Sort it your way!",
"Keywords": "No keywords found",
"URL": "https://play.google.com/store/apps/details?id=nuts.sort.bolts.nut.color.game.free.screw.puzzle"
}
{
"Title": "Screw Jam Master : Nuts Puzzle - Apps on Google Play",
"Description": "Screw Jam Master: Get all the screws, nuts, bolts to the right boxes",
"Keywords": "No keywords found",
"URL": "https://play.google.com/store/apps/details?id=com.game.sjm_android"
}
{
"Title": "Makeover Triple Match 3D - Apps on Google Play",
"Description": "Help her! Tap, find & match tiles to solve puzzles. Love story & fashion journey",
"Keywords": "No keywords found",
"URL": "https://play.google.com/store/apps/details?id=makeover.triple.match.story.beauty.style.tile.puzzle"
}
{
"Title": "Traffic Jam Master: Car Escape - Apps on Google Play",
"Description": "Tap to help the cars to escape from traffic jams!",
"Keywords": "No keywords found",
"URL": "https://play.google.com/store/apps/details?id=com.game.tjm_android"
}
{
"Title": "Idle Mining Factory Tycoon - Apps on Google Play",
"Description": "Mining rocks, digging it.Become the richest mining tycoon",
"Keywords": "No keywords found",
"URL": "https://play.google.com/store/apps/details?id=com.hg.idleminingtycoon"
}
{
"Title": "Words and Friends: Cryptogram - Apps on Google Play",
"Description": "Master cryptograms, solve word puzzles & boost your skills in this brainy game",
"Keywords": "No keywords found",
"URL": "https://play.google.com/store/apps/details?id=com.matryoshka.word"
}
{
"Title": "Super Sort - 3D Triple Master - Apps on Google Play",
"Description": "Match triple goods, enjoy 3D goods sort game! Be a matching master!",
"Keywords": "No keywords found",
"URL": "https://play.google.com/store/apps/details?id=com.supersort.matching.goods.triple.puzzle"
}
{
"Title": "Screw Puzzle - Nuts Bolts Game - Apps on Google Play",
"Description": "Enjoy the screw puzzle! Master woody puzzles with nuts bolts to boost your IQ!",
"Keywords": "No keywords found",
"URL": "https://play.google.com/store/apps/details?id=screw.puzzle.nuts.bolts.pin.wood.games"
}
{
"Title": "Block Puzzle: Stack Infinity - Apps on Google Play",
"Description": "Classic block puzzle game: Train your brain with strategic stacking!",
"Keywords": "No keywords found",
"URL": "https://play.google.com/store/apps/details?id=block.puzzle.game.stack.classic"
}
{
"Title": "Shadow of the Depth - Apps on Google Play",
"Description": "Unique Western Fantasy Roguelike with a Distinctive Birds-Eye View",
"Keywords": "No keywords found",
"URL": "https://play.google.com/store/apps/details?id=com.chillyroom.sotd.gp"
}
{
"Title": "Summoners Legend: AFK idle RPG - Apps on Google Play",
"Description": "AFK adventure: summon, upgrade heroes, conquer dungeons, and dominate the arena!",
"Keywords": "No keywords found",
"URL": "https://play.google.com/store/apps/details?id=mobi.blackbears.games.idle.rpg.free.summoners"
}
{
"Title": "Matching Go! - Puzzle Games - Apps on Google Play",
"Description": "Match, build, and explore! Travel the world and solve puzzles along the way!",
"Keywords": "No keywords found",
"URL": "https://play.google.com/store/apps/details?id=com.matchinggo.puzzlegames"
}
{
"Title": "Brewtopia: Grow Coffee Beans - Apps on Google Play",
"Description": "Grow beans and build your perfect coffee utopia!",
"Keywords": "No keywords found",
"URL": "https://play.google.com/store/apps/details?id=ca.lbcstudios.coffee"
}
{
"Title": "Mystery Town - Merge & Cases - Apps on Google Play",
"Description": "Merge items, solve puzzles, and unravel the mystery!",
"Keywords": "No keywords found",
"URL": "https://play.google.com/store/apps/details?id=com.cedargames.mysterytown"
}
{
"Title": "Legend of Kingdoms: Idle RPG - Apps on Google Play",
"Description": "The unique simple and casual AFK RPG with the Kingdom theme. Fight for victory!",
"Keywords": "No keywords found",
"URL": "https://play.google.com/store/apps/details?id=com.legendofkingdoms.idlerpg.en"
}
{
"Title": "Rise of dune - Apps on Google Play",
"Description": "Train the Sandworm and dominate the dune",
"Keywords": "No keywords found",
"URL": "https://play.google.com/store/apps/details?id=com.riseofdune.strategy.gp"
}
{
"Title": "Triple Match: 3D Wonderland - Apps on Google Play",
"Description": "Triple Match 3D - Dive into Alice's magical match3 adventure in Wonderland!",
"Keywords": "No keywords found",
"URL": "https://play.google.com/store/apps/details?id=com.free.triple.match3d.android"
}
{
"Title": "The Last Survivor.io - Apps on Google Play",
"Description": "Inaugural 3D magical world Roguelike game",
"Keywords": "No keywords found",
"URL": "https://play.google.com/store/apps/details?id=com.ifun.tdfsus.gp"
}
{
"Title": "Darkest Hero - Apps on Google Play",
"Description": "Battle, Loot, CUSTOMIZE",
"Keywords": "No keywords found",
"URL": "https://play.google.com/store/apps/details?id=com.minidragon.darkesthero"
}
{
"Title": "Abalon: Roguelike Tactics CCG - Apps on Google Play",
"Description": "Embark on epic adventures and perfect your strategy in this deck building RPG",
"Keywords": "No keywords found",
"URL": "https://play.google.com/store/apps/details?id=air.com.d20studios.summonersfate"
}
{
"Title": "DeliveryZ - Zombie Driving MMO - Apps on Google Play",
"Description": "Deliver fast, run over zombies, deliver the burger, and get a good tip!",
"Keywords": "No keywords found",
"URL": "https://play.google.com/store/apps/details?id=com.lightfoxgames.deliveryz"
}
{
"Title": "Halls of Torment: Premium - Apps on Google Play",
"Description": "Slay hordes of terrifying monsters in this horde survival roguelite.",
"Keywords": "No keywords found",
"URL": "https://play.google.com/store/apps/details?id=com.halls.of.torment.paid.gp"
}
{
"Title": "Children of Morta - Apps on Google Play",
"Description": "A story-driven roguelite RPG",
"Keywords": "No keywords found",
"URL": "https://play.google.com/store/apps/details?id=com.playdigious.childrenofmorta"
}
{
"Title": "Cook & Merge Kate's Adventure - Apps on Google Play",
"Description": "Merge, cook, & unravel a culinary adventure as you travel the beachside town",
"Keywords": "No keywords found",
"URL": "https://play.google.com/store/apps/details?id=com.supersolid.cookandmerge"
}
{
"Title": "Match Battle - Apps on Google Play",
"Description": "Dive into match-3 battles! Epic hero cards are waiting for you\u00ef\u00bc\u0081",
"Keywords": "No keywords found",
"URL": "https://play.google.com/store/apps/details?id=com.alinagame.puzzlelegends"
}
{
"Title": "Balatro - Apps on Google Play",
"Description": "When Poker Meets Solitaire",
"Keywords": "No keywords found",