-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdb.json
1096 lines (1096 loc) · 31.7 KB
/
db.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
{
"offered": [
{
"id": 1,
"title": "دیوار",
"category": "خرید",
"path": "/assets/offered images/divar.png",
"version": "نسخه ۱۱.۵.۱۰",
"downloads": "+۲۶ میلیون",
"size": "۱۳ مگابایت",
"rating": "۴.۷",
"commentsCount": "از ۱،۲۶۹،۹۴۱ رأی",
"data": [
"/assets/single apps/divar/1.webp",
"/assets/single apps/divar/2.webp",
"/assets/single apps/divar/3.webp",
"/assets/single apps/divar/4.webp",
"/assets/single apps/divar/5.webp",
"/assets/single apps/divar/6.webp",
"/assets/single apps/divar/7.webp"
],
"slugCat": "offered",
"comments": [
{
"id": 1,
"username": "محمد علی",
"comment": "خیلی نرم افزار خوبیه !",
"date": "۱۴۰۰/۱۱/۱۱",
"rateCount": 5
},
{
"id": 2,
"username": "س.م.رضایی",
"comment": "ممنون از ویژگی های خوبی که داخل برنامه گذاشتید.",
"date": "۱۴۰۰/۱۱/۱۱",
"rateCount": 4
},
{
"id": 3,
"username": "کیلان محمودی راد",
"comment": "عالی و نتیجه بخش ممنون اززحمات پرسنل",
"date": "۱۴۰۰/۱۱/۱۱",
"rateCount": 5
},
{
"id": 4,
"username": "کاوه معتمدی",
"comment": "یه ستاره هم زیاده من چند روز پیش کنسول گذاشتم یدونه مرده گفتش میام ازت میخرم یدونه عکس فتو شاپ الکی فرستاد گفت پولو زدم برای من اسمس نیومد اون اسنپی رو هم که فرستاد فرار کرد رفت دیگه تلفنش هم جواب نداد",
"date": "۱۴۰۰/۱۱/۱۱",
"rateCount": 1
},
{
"id": 5,
"username": "شوتی",
"comment": "عالی عالی عالی عالی عالی عالی عالی عالی عالی",
"date": "۱۴۰۰/۱۱/۱۱",
"rateCount": 1
}
]
},
{
"id": 2,
"title": "تقویم اذان گوی صبا",
"category": "مذهبی",
"path": "/assets/offered images/saba.png",
"slugCat": "offered",
"version": "نسخهٔ ۱۲.۵",
"downloads": "+۱۳ میلیون",
"size": "۱۶ مگابایت",
"rating": "۴.۷",
"commentsCount": "از ۳،۲۱۲،۶۶۹ رأی",
"data": [
"/assets/single apps/saba/1.webp",
"/assets/single apps/saba/2.webp",
"/assets/single apps/saba/3.webp",
"/assets/single apps/saba/4.webp",
"/assets/single apps/saba/5.webp",
"/assets/single apps/saba/6.webp",
"/assets/single apps/saba/7.webp"
],
"comments": [
{
"id": 1,
"username": "عابدیان",
"comment": "سلام برنامه خیلی عالیه تشکر از برنامه نویسان و دست اندر کاران برنامه",
"date": "۱۴۰۰/۱۱/۱۱",
"rateCount": 4
},
{
"id": 2,
"username": "هادی صفرپور",
"comment": "سلام. اپلیکیشن باد صبا خیلی خوب وبسیار کاربردیست. موفق وموید باشید. خدا خیرتان دهد ان شاالله",
"date": "۱۳۹۹/۱۲/۲۸",
"rateCount": 5
},
{
"id": 3,
"username": "حسین حمدانی فر",
"comment": "بادصبا واقعا از همههههه لحاظ(تقویم، هشدار، ساعات شرعی و....) بی نقص و کاربردیه خداقوت واقعا",
"date": "۱۳۹۹/۱۲/۲۸",
"rateCount": 4
},
{
"id": 4,
"username": "ریحانه",
"comment": "عالیه هرچی گفتم کم گفتم . نصب نکنی ضرر کردی",
"date": "۱۴۰۰/۰۸/۰۴",
"rateCount": 4
},
{
"id": 5,
"username": "جلالی",
"comment": "خیلی خوبه",
"date": "۱۴۰۰/۰۸/۰۵",
"rateCount": 3
}
]
},
{
"id": 3,
"title": "آپ - اپلیکیشن پرداخت همراه",
"category": "امور مالی",
"path": "/assets/offered images/sibcheapp.png",
"slugCat": "offered"
},
{
"id": 4,
"title": "اپلیکیشن شاد",
"category": "آموزش",
"path": "/assets/offered images/shad.png",
"slugCat": "offered"
},
{
"id": 5,
"title": "همراه من (اپلیکیشن رسمی همراه اول)",
"category": "ابزارها",
"path": "/assets/offered images/hamrah.webp",
"slugCat": "offered"
},
{
"id": 6,
"title": "اسنپ |Snapp سامانه هوشمند حمل و نقل",
"category": "رفت و آمد",
"path": "/assets/offered images/snapp.png",
"slugCat": "offered"
},
{
"id": 7,
"title": "تلوبیون: پخش زنده و آرشیو تلویزیون",
"category": "سرگرمی",
"path": "/assets/offered images/telewebion.png",
"slugCat": "offered"
},
{
"id": 8,
"title": "زاپیا Zapya",
"category": "ابزارها",
"path": "/assets/offered images/zapya.png",
"slugCat": "offered"
},
{
"id": 9,
"title": "ایمو Imo",
"category": "شبکه های اجتماعی",
"path": "/assets/offered images/imo.webp",
"slugCat": "offered"
},
{
"id": 10,
"title": "آپارات",
"category": "سرگرمی",
"path": "/assets/offered images/aparat.png",
"slugCat": "offered"
},
{
"id": 11,
"title": "جعبه ابزار",
"category": "ابزارها",
"path": "/assets/offered images/toolbox.png",
"slugCat": "offered"
},
{
"id": 12,
"title": "دیجی کالا |فروشگاه خرید آنلاین",
"category": "خرید",
"path": "/assets/offered images/digikala.png",
"slugCat": "offered"
},
{
"id": 13,
"title": "بلد - نقشه و مسیریاب",
"category": "رفت و آمد",
"path": "/assets/offered images/balad.png",
"slugCat": "offered"
},
{
"id": 14,
"title": "پیام رسان ایتا",
"category": "شبکه های اجتماعی",
"path": "/assets/offered images/eitaa.png",
"slugCat": "offered"
},
{
"id": 15,
"title": "بیوتی پلاس",
"category": "عکاسی و ویدیو",
"path": "/assets/offered images/beautyplus.png",
"slugCat": "offered"
}
],
"practical": [
{
"id": 1,
"title": "شریت SHAREit",
"category": "ابزارها",
"path": "/assets/practical images/shareit.png",
"slugCat": "practical"
},
{
"id": 2,
"title": "آپارات",
"category": "سرگرمی",
"path": "/assets/practical images/aparat.png",
"slugCat": "practical"
},
{
"id": 3,
"title": "Instagram",
"category": "شبکه های اجتماعی",
"path": "/assets/practical images/instagram.png",
"slugCat": "practical"
},
{
"id": 4,
"title": "تلوبیون: پخش زنده و آرشیو تلویزیون",
"category": "سرگرمی",
"path": "/assets/practical images/telewebion.png",
"slugCat": "practical"
},
{
"id": 5,
"title": "اسنپ |Snapp سامانه هوشمند حمل و نقل",
"category": "رفت و آمد",
"path": "/assets/practical images/snapp.png",
"slugCat": "practical"
},
{
"id": 6,
"title": "بلد - نقشه و مسیریاب",
"category": "رفت و آمد",
"path": "/assets/practical images/balad.png",
"slugCat": "practical"
},
{
"id": 7,
"title": "روبیکا",
"category": "شبکه های اجتماعی",
"path": "/assets/practical images/rubika.png",
"slugCat": "practical"
},
{
"id": 8,
"title": "آپ - اپلیکیشن پرداخت همراه",
"category": "امور مالی",
"path": "/assets/practical images/sibche.png",
"slugCat": "practical"
},
{
"id": 9,
"title": "دیوار",
"category": "خرید",
"path": "/assets/practical images/divar.png",
"slugCat": "practical"
},
{
"id": 10,
"title": "واتساپ WhatsApp Messenger",
"category": "شبکه های اجتماعی",
"path": "/assets/practical images/whatsapp.png",
"slugCat": "practical"
},
{
"id": 11,
"title": "اوانو | کارت به کارت , شارژ , قبض",
"category": "امور مالی",
"path": "/assets/practical images/ewano.png",
"slugCat": "practical"
},
{
"id": 12,
"title": "دیجیکالا | فروشگاه خرید آنلاین",
"category": "خرید",
"path": "/assets/practical images/digikala.png",
"slugCat": "practical"
},
{
"id": 13,
"title": "ایرانسل من",
"category": "ابزارها",
"path": "/assets/practical images/myirancell.png",
"slugCat": "practical"
},
{
"id": 14,
"title": "همراه بانک ملت",
"category": "امور مالی",
"path": "/assets/practical images/mellatbank.png",
"slugCat": "practical"
},
{
"id": 15,
"title": "تقویم اذان گو بادصبا",
"category": "مذهبی",
"path": "/assets/practical images/saba.png",
"slugCat": "practical"
},
{
"id": 16,
"title": "همراه من (اپلیکیشن رسمی همراه اول)",
"category": "ابزارها",
"path": "/assets/practical images/hamrah.webp",
"slugCat": "practical"
}
],
"selected": [
{
"id": 1,
"title": "لیت مچ - Litmatch",
"category": "شبکه های اجتماعی",
"path": "/assets/selected images/litmatch.png",
"slugCat": "selected"
},
{
"id": 2,
"title": "اسنپ اکسپرس / سوپرمارکت آنلاین",
"category": "خرید",
"path": "/assets/selected images/expresssnapp.png",
"slugCat": "selected"
},
{
"id": 3,
"title": "Wallcraft - Wallpapers 4K, HD",
"category": "شخصی سازی",
"path": "/assets/selected images/wallpapers.png",
"slugCat": "selected"
},
{
"id": 4,
"title": "Solid Explorer File Manager",
"category": "ابزارها",
"path": "/assets/selected images/solidexplorer.png",
"slugCat": "selected"
},
{
"id": 5,
"title": "Video Watermark - Create & Add Watermark On Videos",
"category": "ابزارها",
"path": "/assets/selected images/videowatermark.png",
"slugCat": "selected"
},
{
"id": 6,
"title": "قهرمان کوچولو کلمات جادویی",
"category": "کودک",
"path": "/assets/selected images/ghahremankuchulu.png",
"slugCat": "selected"
},
{
"id": 7,
"title": "Duo Mobile",
"category": "ابزارها",
"path": "/assets/selected images/duosecurity.png",
"slugCat": "selected"
},
{
"id": 8,
"title": "Weather",
"category": "آب و هوا",
"path": "/assets/selected images/weather.png",
"slugCat": "selected"
},
{
"id": 9,
"title": "پرفکت پیانو - Perfect Piano",
"category": "موسیقی",
"path": "/assets/selected images/perfectpiano.png",
"slugCat": "selected"
},
{
"id": 10,
"title": "راویتون | کمیک ایرانی",
"category": "سرگرمی",
"path": "/assets/selected images/ravitoon.png",
"slugCat": "selected"
},
{
"id": 11,
"title": "نی نی پا: بارداری و رشد کودک",
"category": "پزشکی",
"path": "/assets/selected images/nini.png",
"slugCat": "selected"
},
{
"id": 12,
"title": "تون آرت - ToonArt",
"category": "عکاسی و ویدیو",
"path": "/assets/selected images/toonArt.png",
"slugCat": "selected"
},
{
"id": 13,
"title": "شهر قرآنی",
"category": "کودک",
"path": "/assets/selected images/shahrequrani.png",
"slugCat": "selected"
},
{
"id": 14,
"title": "نیازمندی های همشهری",
"category": "خرید",
"path": "/assets/selected images/rahnama.png",
"slugCat": "selected"
},
{
"id": 15,
"title": "دانلود استوری اینستاگرام",
"category": "شبکه های اجتماعی",
"path": "/assets/selected images/instadownloader.png",
"slugCat": "selected"
},
{
"id": 16,
"title": "سفرمارکت | بلیط هواپیما,تور و هتل",
"category": "سفر",
"path": "/assets/selected images/safarmarket.png",
"slugCat": "selected"
}
],
"photovideo": [
{
"id": 1,
"title": "PicsArt - ویرایش عکس پیکس آرت",
"category": "عکاسی و ویدیو",
"path": "/assets/photo and video images/picsart.webp",
"slugCat": "photovideo"
},
{
"id": 2,
"title": "Lumii - ویرایش تصویر",
"category": "عکاسی و ویدیو",
"path": "/assets/photo and video images/lumii.webp",
"slugCat": "photovideo"
},
{
"id": 3,
"title": "متن نگار",
"category": "عکاسی و ویدیو",
"path": "/assets/photo and video images/textgraphy.png",
"slugCat": "photovideo"
},
{
"id": 4,
"title": "عکس نوشته ساز",
"category": "عکاسی و ویدیو",
"path": "/assets/photo and video images/typegraphy.png",
"slugCat": "photovideo"
},
{
"id": 5,
"title": "PhotoGrid - ویرایش عکس و ویدیو فوتوگرید",
"category": "عکاسی و ویدیو",
"path": "/assets/photo and video images/photogrid.png",
"slugCat": "photovideo"
},
{
"id": 5,
"title": "فونتو",
"category": "عکاسی و ویدیو",
"path": "/assets/photo and video images/phonto.png",
"slugCat": "photovideo"
},
{
"id": 6,
"title": "کراپ باز - ویرایش عکس",
"category": "عکاسی و ویدیو",
"path": "/assets/photo and video images/cropbuzz.png",
"slugCat": "photovideo"
},
{
"id": 7,
"title": "آلگرام (پست ساز شبکه های اجتماعی)",
"category": "شبکه های اجتماعی",
"path": "/assets/photo and video images/allgram.png",
"slugCat": "photovideo"
}
],
"updated": [
{
"id": 1,
"title": "بازده | رصد بورس, طلا و ارزدیجیتال",
"category": "امور مالی",
"path": "/assets/updated images/baazde.png",
"slugCat": "updated"
},
{
"id": 2,
"title": "حسابداری یاس_فروشگاه+فاکتور+انبار",
"category": "امور مالی",
"path": "/assets/updated images/yas.webp",
"slugCat": "updated"
},
{
"id": 3,
"title": "گوشیتو سریع کن( ضدهنگ + افزایش سرعت )",
"category": "ابزارها",
"path": "/assets/updated images/booster.png",
"slugCat": "updated"
},
{
"id": 4,
"title": "ثبت و استعلام چک صیاد(ساد24)",
"category": "امور مالی",
"path": "/assets/updated images/check.png",
"slugCat": "updated"
},
{
"id": 5,
"title": "متن یار: تبدیل تصویر و عکس به متن",
"category": "ابزارها",
"path": "/assets/updated images/matnyar.png",
"slugCat": "updated"
},
{
"id": 6,
"title": "کلاب هاوس - Clubhouse",
"category": "شبکه های اجتماعی",
"path": "/assets/updated images/clubhouse.png",
"slugCat": "updated"
},
{
"id": 7,
"title": "Google Meet",
"category": "شبکه های اجتماعی",
"path": "/assets/updated images/googlemeeting.png",
"slugCat": "updated"
},
{
"id": 8,
"title": "بله (گفتگو + پرداخت)",
"category": "شبکه های اجتماعی",
"path": "/assets/updated images/bale.png",
"slugCat": "updated"
},
{
"id": 9,
"title": "همراه من (اپلیکیشن رسمی همراه اول)",
"category": "ابزارها",
"path": "/assets/updated images/hamrah.webp",
"slugCat": "updated"
},
{
"id": 10,
"title": "آی کاپ",
"category": "امور مالی",
"path": "/assets/updated images/icup.png",
"slugCat": "updated"
},
{
"id": 11,
"title": "پاتوق - شبکه اجتماعی بازی و سرگرمی",
"category": "شبکه های اجتماعی",
"path": "/assets/updated images/patogh.png",
"slugCat": "updated"
},
{
"id": 12,
"title": "کالری شمار و رژیم غذایی زیره",
"category": "تناسب اندام",
"path": "/assets/updated images/zire.png",
"slugCat": "updated"
},
{
"id": 13,
"title": "یک زن: ارتباط با متخصصین زن",
"category": "پزشکی",
"path": "/assets/updated images/yekzan.png",
"slugCat": "updated"
},
{
"id": 14,
"title": "نماوا - تماشای آنلاین فیلم و سریال",
"category": "سرگرمی",
"path": "/assets/updated images/namava.png",
"slugCat": "updated"
},
{
"id": 15,
"title": "نزدیکا - دایره دوستان جدید تو",
"category": "شبکه های اجتماعی",
"path": "/assets/updated images/nazdika.png",
"slugCat": "updated"
},
{
"id": 16,
"title": "فوت موب - نتایج زنده فوتبال",
"category": "ورزشی",
"path": "/assets/updated images/fotmob.webp",
"slugCat": "updated"
}
],
"banners": [
{
"id": 1,
"path": "/assets/banner images/1.png",
"slugCat": "banners"
},
{
"id": 2,
"path": "/assets/banner images/2.png",
"slugCat": "banners"
},
{
"id": 3,
"path": "/assets/banner images/3.png",
"slugCat": "banners"
},
{
"id": 4,
"path": "/assets/banner images/4.png",
"slugCat": "banners"
},
{
"id": 5,
"path": "/assets/banner images/5.png",
"slugCat": "banners"
},
{
"id": 6,
"path": "/assets/banner images/6.png",
"slugCat": "banners"
},
{
"id": 7,
"path": "/assets/banner images/7.png",
"slugCat": "banners"
},
{
"id": 8,
"path": "/assets/banner images/8.png",
"slugCat": "banners"
},
{
"id": 9,
"path": "/assets/banner images/9.png",
"slugCat": "banners"
},
{
"id": 10,
"path": "/assets/banner images/10.png",
"slugCat": "banners"
}
],
"fashion": [
{
"id": 1,
"title": "دیجی کالا |فروشگاه خرید آنلاین",
"category": "خرید",
"path": "/assets/fashion images/digikala.png",
"slugCat": "fashion"
},
{
"id": 2,
"title": "کمدا | شبکه اجتماعی خرید و فروش",
"category": "خرید",
"path": "/assets/fashion images/komodaa.png",
"slugCat": "fashion"
},
{
"id": 3,
"title": "بانی مد - مرکز خرید آنلاین",
"category": "خرید",
"path": "/assets/fashion images/banimode.png",
"slugCat": "fashion"
},
{
"id": 4,
"title": "پاساژ | مرکز خرید پوشاک و آرایشی",
"category": "خرید",
"path": "/assets/fashion images/pasaj.webp",
"slugCat": "fashion"
},
{
"id": 5,
"title": "دارلین | مد و فشن بانوان",
"category": "خرید",
"path": "/assets/fashion images/darlyn.png",
"slugCat": "fashion"
},
{
"id": 6,
"title": "بوتیک , جستجوگر لباس",
"category": "سبک زندگی",
"path": "/assets/fashion images/botick.png",
"slugCat": "fashion"
},
{
"id": 7,
"title": "روچی - بازار پارچه و خیاطی",
"category": "خرید",
"path": "/assets/fashion images/rochi.png",
"slugCat": "fashion"
},
{
"id": 8,
"title": "مینی کالا | بازار خرید و فروش کالا",
"category": "خرید",
"path": "/assets/fashion images/minikala.png",
"slugCat": "fashion"
},
{
"id": 9,
"title": "فروشگاه اینترنتی مدیسه",
"category": "خرید",
"path": "/assets/fashion images/modiseh.png",
"slugCat": "fashion"
}
],
"smallsize": [
{
"id": 1,
"title": "آشپزی با سرآشپز پاپیون",
"category": "آشپزی و رستوران",
"path": "/assets/small apps images/papillon.png",
"slugCat": "smallsize"
},
{
"id": 2,
"title": "آیلینگو | آموزش زبان انگلیسی",
"category": "آموزش",
"path": "/assets/small apps images/ilingo.png",
"slugCat": "smallsize"
},
{
"id": 3,
"title": "همراه من (اپلیکیشن رسمی همراه اول)",
"category": "ابزارها",
"path": "/assets/small apps images/hamrah.webp",
"slugCat": "smallsize"
},
{
"id": 4,
"title": "ترب | بهترین قیمت بازار",
"category": "خرید",
"path": "/assets/small apps images/torob.png",
"slugCat": "smallsize"
},
{
"id": 5,
"title": "اینستاگرام لایت - Instagram Lite",
"category": "شبکه های اجتماعی",
"path": "/assets/small apps images/instagramlite.png",
"slugCat": "smallsize"
},
{
"id": 6,
"title": "Automatic Call Recorder",
"category": "ابزارها",
"path": "/assets/small apps images/callrecorder.webp",
"slugCat": "smallsize"
},
{
"id": 7,
"title": "تمیز کردن و افزایش حافظه گوشی - Memory Cleaner",
"category": "ابزارها",
"path": "/assets/small apps images/junkremove.png",
"slugCat": "smallsize"
},
{
"id": 8,
"title": "زاپیا Zapya",
"category": "ابزارها",
"path": "/assets/small apps images/zapya.png",
"slugCat": "smallsize"
},
{
"id": 9,
"title": "ADM",
"category": "ابزارها",
"path": "/assets/small apps images/adm.png",
"slugCat": "smallsize"
},
{
"id": 10,
"title": "پدومتر - Pedometer",
"category": "تناسب اندام",
"path": "/assets/small apps images/pedometer.png",
"slugCat": "smallsize"
},
{
"id": 11,
"title": "جفتک ( قفل برنامه - گالری مخفی )",
"category": "ابزارها",
"path": "/assets/small apps images/joftak.png",
"slugCat": "smallsize"
},
{
"id": 12,
"title": "Antivirus & Virus Cleaner",
"category": "ابزارها",
"path": "/assets/small apps images/antivirus.png",
"slugCat": "smallsize"
},
{
"id": 13,
"title": "بلد - نقشه و مسیریاب",
"category": "رفت و آمد",
"path": "/assets/small apps images/balad.png",
"slugCat": "smallsize"
},
{
"id": 14,
"title": "اوانو | کارت به کارت , شارژ , قبض",
"category": "امور مالی",
"path": "/assets/small apps images/ewano.png",
"slugCat": "smallsize"
},
{
"id": 15,
"title": "جعبه ابزار",
"category": "ابزارها",
"path": "/assets/small apps images/toolbox.png",
"slugCat": "smallsize"
},
{
"id": 16,
"title": "شفاداک - نوبت دهی هوشمند",
"category": "پزشکی",
"path": "/assets/small apps images/shafadoc.png",
"slugCat": "smallsize"
}
],
"best": [
{
"id": 1,
"title": "همراه بانک سپه - انصار سابق",
"category": "امور مالی",
"path": "/assets/best app images/banksepah.webp",
"slugCat": "best"
},
{
"id": 2,
"title": "شماره مجازی - نیل",
"category": "شبکه های اجتماعی",
"path": "/assets/best app images/virtualnumber.png",
"slugCat": "best"
},
{
"id": 3,
"title": "اوانو | کارت به کارت , شارژ , قبض",
"category": "امور مالی",
"path": "/assets/best app images/ewano.png",
"slugCat": "best"
},
{
"id": 4,
"title": "رمزبان (رمز یکبار مصرف بانک ملی)",
"category": "امور مالی",
"path": "/assets/best app images/ramzban.png",
"slugCat": "best"
},
{
"id": 5,
"title": "اخبار گوگل",
"category": "کتاب ها و مطبوعات",
"path": "/assets/best app images/googlenews.png",
"slugCat": "best"
},
{
"id": 6,
"title": "ریکاوری پیشرفته عکس و فیلم",
"category": "ابزارها",
"path": "/assets/best app images/recovery.png",
"slugCat": "best"
},
{
"id": 7,
"title": "ایمالز - قیمت لحظه ای بازار",
"category": "خرید",
"path": "/assets/best app images/emalls.png",
"slugCat": "best"
},
{
"id": 8,
"title": "دانشنامه اسنپ چت",
"category": "آموزش",
"path": "/assets/best app images/snapchatdocs.png",
"slugCat": "best"
},
{
"id": 9,
"title": "گوگل فایلز",
"category": "ابزارها",
"path": "/assets/best app images/googlefiles.webp",
"slugCat": "best"
},
{
"id": 10,
"title": "اسنپ |Snapp سامانه هوشمند حمل و نقل",
"category": "رفت و آمد",
"path": "/assets/best app images/snapp.png",
"slugCat": "best"
},
{
"id": 11,
"title": "کارت پستال دیجیتال",
"category": "شبکه های اجتماعی",
"path": "/assets/best app images/digipostal.png",
"slugCat": "best"
},
{
"id": 12,
"title": "ساتا",
"category": "ابزارها",
"path": "/assets/best app images/sata.png",
"slugCat": "best"
},
{
"id": 13,
"title": "ایرانسل من",
"category": "ابزارها",
"path": "/assets/best app images/myirancell.png",
"slugCat": "best"
},
{
"id": 14,
"title": "پلیس من",
"category": "ابزارها",
"path": "/assets/best app images/mypolice.png",
"slugCat": "best"
},
{
"id": 15,
"title": "اسنپ فود | سفارش غذا و سوپرمارکت",
"category": "آشپزی و رستوران",
"path": "/assets/best app images/snappfood.png",
"slugCat": "best"
},
{
"id": 16,
"title": "اسنپ رانندگان",
"category": "رفت و آمد",
"path": "/assets/best app images/snappdriver.png",
"slugCat": "best"
}
],
"mostdownload": [
{
"id": 1,
"title": "دیوار",
"category": "خرید",
"path": "/assets/most download apps images/divar.png",
"slugCat": "mostdownload"
},
{
"id": 2,
"title": "فیلیمو - تماشای فیلم و سریال",
"category": "سرگرمی",
"path": "/assets/most download apps images/filimo.png",
"slugCat": "mostdownload"
},
{
"id": 3,
"title": "نماوا - تماشای آنلاین فیلم و سریال",
"category": "سرگرمی",
"path": "/assets/most download apps images/namava.png",
"slugCat": "mostdownload"
},
{
"id": 4,
"title": "طاقچه | کتاب الکترونیکی و صوتی",
"category": "کتاب ها و مطبوعات",
"path": "/assets/most download apps images/taghche.png",
"slugCat": "mostdownload"
},
{
"id": 5,
"title": "لایک بگیر اینستاگرام",
"category": "شبکه های اجتماعی",
"path": "/assets/most download apps images/likebegir.png",
"slugCat": "mostdownload"
},
{
"id": 6,
"title": "فالوور بگیر اینستاگرام",
"category": "شبکه های اجتماعی",
"path": "/assets/most download apps images/followerbegir.png",
"slugCat": "mostdownload"
},
{
"id": 7,