-
Notifications
You must be signed in to change notification settings - Fork 203
Expand file tree
/
Copy pathsearch.json
More file actions
1878 lines (1878 loc) · 73.9 KB
/
Copy pathsearch.json
File metadata and controls
1878 lines (1878 loc) · 73.9 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[
{
"productLink": "https://www.etsy.com/listing/1330259870",
"productTitle": "Wooden Laptop Stand, Portable Laptop Stand, Macbook Stand, Wooden Stand, Coworker gift, Work from Home, Eco Laptop Stand, Computer Stand",
"productImage": "https://i.etsystatic.com/36084915/r/il/6fc659/6945634371/il_300x300.6945634371_nipg.jpg",
"seller": "WoodTodayEU",
"listingType": "Free listing",
"productRate": 4.6,
"numberOfReviews": 20,
"freeShipping": "Yes",
"productPrice": 19.0,
"priceCurrency": "$",
"originalPrice": 38.0,
"discount": "(50% off)"
},
{
"productLink": "https://www.etsy.com/listing/4329606635",
"productTitle": "Birthday Premium Foldingl Laptop Dock – walnut Laptop Stand, MacBook Pro wood Stand, Desk Organizer, Housewarming & anniversary gift for him",
"productImage": "https://i.etsystatic.com/36084915/r/il/6fc659/6945634371/il_300x300.6945634371_nipg.jpg",
"seller": "GEEKTRADE2025",
"listingType": "Free listing",
"productRate": 4.8,
"numberOfReviews": 24,
"freeShipping": "Yes",
"productPrice": 27.16,
"priceCurrency": "$",
"originalPrice": 54.33,
"discount": "(50% off)"
},
{
"productLink": "https://www.etsy.com/listing/1241156534",
"productTitle": "Wooden Laptop riser for desk, Wood laptop stand, Macbook stand, Laptop holder desk, Macbook riser",
"productImage": "https://i.etsystatic.com/36084915/r/il/6fc659/6945634371/il_300x300.6945634371_nipg.jpg",
"seller": "thehrdwoodltd",
"listingType": "Free listing",
"productRate": 4.9,
"numberOfReviews": 360,
"freeShipping": "Yes",
"productPrice": 45.0,
"priceCurrency": "$",
"originalPrice": 112.5,
"discount": "(60% off)"
},
{
"productLink": "https://www.etsy.com/listing/1676266456",
"productTitle": "Birthday Gift Custom Wood Laptop Holder - Macbook Stand, Riser, Desk Setup, Unique & Folding Design for Home Office and New Job Gift",
"productImage": "https://i.etsystatic.com/36084915/r/il/6fc659/6945634371/il_300x300.6945634371_nipg.jpg",
"seller": "GreatLaceCrafts",
"listingType": "Free listing",
"productRate": 4.8,
"numberOfReviews": 140,
"freeShipping": "No",
"productPrice": 27.72,
"priceCurrency": "$",
"originalPrice": 42.64,
"discount": "(35% off)"
},
{
"productLink": "https://www.etsy.com/listing/4359403606",
"productTitle": "Wooden Laptop Riser for Desk – Ergonomic MacBook Stand, Adjustable Laptop Holder, Bamboo Wood Desk Riser",
"productImage": "https://i.etsystatic.com/36084915/r/il/6fc659/6945634371/il_300x300.6945634371_nipg.jpg",
"seller": "ModernWoodenWorks",
"listingType": "Free listing",
"productRate": 3.4,
"numberOfReviews": 5,
"freeShipping": "Yes",
"productPrice": 22.07,
"priceCurrency": "$",
"originalPrice": 31.54,
"discount": "(30% off)"
},
{
"productLink": "https://www.etsy.com/listing/1841550418",
"productTitle": "Foldable Wood Laptop Stand for Desk, Laptop Riser Stand, Macbook pro, Macbook air stand, Laptop accessories, Office gift ideas for him, men",
"productImage": "https://i.etsystatic.com/36084915/r/il/6fc659/6945634371/il_300x300.6945634371_nipg.jpg",
"seller": "BeardedOnly",
"listingType": "Free listing",
"productRate": 4.7,
"numberOfReviews": 30,
"freeShipping": "No",
"productPrice": 29.45,
"priceCurrency": "$",
"originalPrice": 73.63,
"discount": "(60% off)"
},
{
"productLink": "https://www.etsy.com/listing/1864701887",
"productTitle": "Black Walnut Laptop Stand – Elegant, Durable, and Laptop-Cooling Desk Accessory",
"productImage": "https://i.etsystatic.com/36084915/r/il/6fc659/6945634371/il_300x300.6945634371_nipg.jpg",
"seller": "ArtsyWoodWorkshop",
"listingType": "Free listing",
"productRate": 4.9,
"numberOfReviews": 101,
"freeShipping": "Yes",
"productPrice": 20.0,
"priceCurrency": "$",
"originalPrice": "No discount",
"discount": "No discount"
},
{
"productLink": "https://www.etsy.com/listing/4339269562",
"productTitle": "Curved Walnut MacBook Stand: Handmade Wooden Laptop Riser",
"productImage": "https://i.etsystatic.com/36084915/r/il/6fc659/6945634371/il_300x300.6945634371_nipg.jpg",
"seller": "Manthanamarket",
"listingType": "Free listing",
"productRate": 4.6,
"numberOfReviews": 46,
"freeShipping": "No",
"productPrice": 72.25,
"priceCurrency": "$",
"originalPrice": 85.0,
"discount": "(15% off)"
},
{
"productLink": "https://www.etsy.com/listing/853909817",
"productTitle": "Handmade Wooden Laptop Stand: Ergonomic Cooling Riser, Home Office Decor",
"productImage": "https://i.etsystatic.com/36084915/r/il/6fc659/6945634371/il_300x300.6945634371_nipg.jpg",
"seller": "FineWineCaddy",
"listingType": "Free listing",
"productRate": 4.9,
"numberOfReviews": 270,
"freeShipping": "Yes",
"productPrice": 109.0,
"priceCurrency": "$",
"originalPrice": "No discount",
"discount": "No discount"
},
{
"productLink": "https://www.etsy.com/listing/1572117648",
"productTitle": "Monitor Stand - Monitor Riser, Wood Monitor Stand, Solid Wood Stand, Desk Shelf, Laptop Stand, Speaker Stand, Desk Accessories, Wooden Stand",
"productImage": "https://i.etsystatic.com/36084915/r/il/6fc659/6945634371/il_300x300.6945634371_nipg.jpg",
"seller": "KeelanScott",
"listingType": "Free listing",
"productRate": 4.9,
"numberOfReviews": 630,
"freeShipping": "Yes",
"productPrice": 119.99,
"priceCurrency": "$",
"originalPrice": 199.99,
"discount": "(40% off)"
},
{
"productLink": "https://www.etsy.com/listing/1107601422",
"productTitle": "Custom laptop stand,Laptop desk,Laptop stand,Laptop holder,Wooden laptop stand,Macbook stand,Wood laptop holder,Wood laptop stand,Lap tray",
"productImage": "https://i.etsystatic.com/36084915/r/il/6fc659/6945634371/il_300x300.6945634371_nipg.jpg",
"seller": "BestWoodenStudio",
"listingType": "Free listing",
"productRate": 4.8,
"numberOfReviews": 490,
"freeShipping": "Yes",
"productPrice": 37.0,
"priceCurrency": "$",
"originalPrice": 74.0,
"discount": "(50% off)"
},
{
"productLink": "https://www.etsy.com/listing/1874892120",
"productTitle": "Minimalist Walnut Wood Tablet Stand, Handcrafted Laptop Holder, Ipad stand, Phone stand, Sturdy and Durable Design",
"productImage": "https://i.etsystatic.com/36084915/r/il/6fc659/6945634371/il_300x300.6945634371_nipg.jpg",
"seller": "SixDstudio",
"listingType": "Free listing",
"productRate": 4.9,
"numberOfReviews": 64,
"freeShipping": "Yes",
"productPrice": 37.8,
"priceCurrency": "$",
"originalPrice": 54.0,
"discount": "(30% off)"
},
{
"productLink": "https://www.etsy.com/listing/1821925451",
"productTitle": "Birthday Gift Custom Laptop Holder - Wood Laptop Riser & Cooling Stand | MacBook Desk Stand | Unique Gift for Him, Husband, Home Office",
"productImage": "https://i.etsystatic.com/36084915/r/il/6fc659/6945634371/il_300x300.6945634371_nipg.jpg",
"seller": "Sawitreartstudio",
"listingType": "Free listing",
"productRate": 4.7,
"numberOfReviews": 174,
"freeShipping": "Yes",
"productPrice": 29.0,
"priceCurrency": "$",
"originalPrice": 58.0,
"discount": "(50% off)"
},
{
"productLink": "https://www.etsy.com/listing/1475257086",
"productTitle": "Wooden laptop riser, Chic MacBook stand, Ergonomic desk accessory, Stylish home office decor, Perfect gift for her",
"productImage": "https://i.etsystatic.com/36084915/r/il/6fc659/6945634371/il_300x300.6945634371_nipg.jpg",
"seller": "EnkelStudios",
"listingType": "Free listing",
"productRate": 4.7,
"numberOfReviews": 206,
"freeShipping": "Yes",
"productPrice": 64.64,
"priceCurrency": "$",
"originalPrice": "No discount",
"discount": "No discount"
},
{
"productLink": "https://www.etsy.com/listing/4386049575",
"productTitle": "Ergonomic Wood Laptop Stand – Adjustable Foldable Riser for 10-16\" Laptops, Royal Teak Finish",
"productImage": "https://i.etsystatic.com/36084915/r/il/6fc659/6945634371/il_300x300.6945634371_nipg.jpg",
"seller": "NextecSolutions",
"listingType": "Free listing",
"productRate": null,
"numberOfReviews": null,
"freeShipping": "Yes",
"productPrice": 91.0,
"priceCurrency": "$",
"originalPrice": 140.0,
"discount": "(35% off)"
},
{
"productLink": "https://www.etsy.com/listing/4312615029",
"productTitle": "Wooden Laptop Stand with Keyboard Shelf: Ergonomic Desk Organizer",
"productImage": "https://i.etsystatic.com/36084915/r/il/6fc659/6945634371/il_300x300.6945634371_nipg.jpg",
"seller": "WdtchBoutique",
"listingType": "Free listing",
"productRate": 4.6,
"numberOfReviews": 62,
"freeShipping": "Yes",
"productPrice": 31.03,
"priceCurrency": "$",
"originalPrice": 41.38,
"discount": "(25% off)"
},
{
"productLink": "https://www.etsy.com/listing/4345642287",
"productTitle": "Birthday Custom Engraved Folding Wood Laptop Holder,Portable Macbook Stand,Office Desk Setup,Corporate Gift,Office Gift,Unique Gift for Him",
"productImage": "https://i.etsystatic.com/36084915/r/il/6fc659/6945634371/il_300x300.6945634371_nipg.jpg",
"seller": "mailao0813",
"listingType": "Free listing",
"productRate": 4.5,
"numberOfReviews": 36,
"freeShipping": "Yes",
"productPrice": 34.0,
"priceCurrency": "$",
"originalPrice": 68.0,
"discount": "(50% off)"
},
{
"productLink": "https://www.etsy.com/listing/4331627881",
"productTitle": "Handmade Wood Laptop Stand with Phone Holder: Ergonomic Desk Riser",
"productImage": "https://i.etsystatic.com/36084915/r/il/6fc659/6945634371/il_300x300.6945634371_nipg.jpg",
"seller": "WoodCrafterUA",
"listingType": "Free listing",
"productRate": 5.0,
"numberOfReviews": 10,
"freeShipping": "No",
"productPrice": 29.74,
"priceCurrency": "$",
"originalPrice": 39.66,
"discount": "(25% off)"
},
{
"productLink": "https://www.etsy.com/listing/1763074695",
"productTitle": "BAMstand Laptop stand",
"productImage": "https://i.etsystatic.com/36084915/r/il/6fc659/6945634371/il_300x300.6945634371_nipg.jpg",
"seller": "BAMDesigned",
"listingType": "Free listing",
"productRate": 4.8,
"numberOfReviews": 7,
"freeShipping": "Yes",
"productPrice": 41.85,
"priceCurrency": "$",
"originalPrice": "No discount",
"discount": "No discount"
},
{
"productLink": "https://www.etsy.com/listing/1384849821",
"productTitle": "MacBook & Laptop Stand: 360 Rotation Adjustable Aluminium Wooden Black Walnut Wood Windows Laptop Riser",
"productImage": "https://i.etsystatic.com/36084915/r/il/6fc659/6945634371/il_300x300.6945634371_nipg.jpg",
"seller": "LohaCustomOfficial",
"listingType": "Free listing",
"productRate": 4.8,
"numberOfReviews": 10,
"freeShipping": "Yes",
"productPrice": 99.0,
"priceCurrency": "$",
"originalPrice": "No discount",
"discount": "No discount"
},
{
"productLink": "https://www.etsy.com/listing/1796461866",
"productTitle": "Wood Laptop Stand in Walnut & Natural Bamboo Finish, 11-Inch Wide Ergonomic Slanted Laptop Riser, 3-Inch High, Desk Organizer",
"productImage": "https://i.etsystatic.com/36084915/r/il/6fc659/6945634371/il_300x300.6945634371_nipg.jpg",
"seller": "MelPeraDesign",
"listingType": "Free listing",
"productRate": 4.9,
"numberOfReviews": 100,
"freeShipping": "Yes",
"productPrice": 79.0,
"priceCurrency": "$",
"originalPrice": "No discount",
"discount": "No discount"
},
{
"productLink": "https://www.etsy.com/listing/1774799882",
"productTitle": "Wooden Laptop riser for desk, Wood laptop stand, MacBook holder, Desk accessory",
"productImage": "https://i.etsystatic.com/36084915/r/il/6fc659/6945634371/il_300x300.6945634371_nipg.jpg",
"seller": "thehrdwoodltd",
"listingType": "Free listing",
"productRate": 4.9,
"numberOfReviews": 360,
"freeShipping": "Yes",
"productPrice": 29.0,
"priceCurrency": "$",
"originalPrice": 72.5,
"discount": "(60% off)"
},
{
"productLink": "https://www.etsy.com/listing/949905096",
"productTitle": "Dual Oak Laptop Stand: Vertical Macbook Dock, Desk Organizer",
"productImage": "https://i.etsystatic.com/36084915/r/il/6fc659/6945634371/il_300x300.6945634371_nipg.jpg",
"seller": "Oakywood",
"listingType": "Free listing",
"productRate": 4.9,
"numberOfReviews": 830,
"freeShipping": "Yes",
"productPrice": 96.25,
"priceCurrency": "$",
"originalPrice": "No discount",
"discount": "No discount"
},
{
"productLink": "https://www.etsy.com/listing/4312016350",
"productTitle": "Minimalist Wooden Laptop Stand: Ergonomic Portable Desk Riser",
"productImage": "https://i.etsystatic.com/36084915/r/il/6fc659/6945634371/il_300x300.6945634371_nipg.jpg",
"seller": "ScoobyWoody",
"listingType": "Free listing",
"productRate": 4.5,
"numberOfReviews": 416,
"freeShipping": "No",
"productPrice": 24.34,
"priceCurrency": "$",
"originalPrice": 60.86,
"discount": "(60% off)"
},
{
"productLink": "https://www.etsy.com/listing/1708762018",
"productTitle": "Wooden Laptop Stand - Desk Organizer for Multiple Laptops - Vertical Adjustable Macbook Pro Holder - Personalized Gift for Friends & Him",
"productImage": "https://i.etsystatic.com/36084915/r/il/6fc659/6945634371/il_300x300.6945634371_nipg.jpg",
"seller": "Woodengiftlovers",
"listingType": "Free listing",
"productRate": 4.8,
"numberOfReviews": 203,
"freeShipping": "Yes",
"productPrice": 25.22,
"priceCurrency": "$",
"originalPrice": 33.63,
"discount": "(25% off)"
},
{
"productLink": "https://www.etsy.com/listing/1459297913",
"productTitle": "Triple Vertical Laptop Stand for Desk - Multiple Laptop Holder with Felt Inner Surface , Cork Bottom for Optimal Workspace",
"productImage": "https://i.etsystatic.com/36084915/r/il/6fc659/6945634371/il_300x300.6945634371_nipg.jpg",
"seller": "thehrdwoodltd",
"listingType": "Free listing",
"productRate": 4.9,
"numberOfReviews": 360,
"freeShipping": "Yes",
"productPrice": 39.0,
"priceCurrency": "$",
"originalPrice": 65.0,
"discount": "(40% off)"
},
{
"productLink": "https://www.etsy.com/listing/975025872",
"productTitle": "Laptop Stand wood made of Solid walnut, Wood Handcrafted laptop holder and riser",
"productImage": "https://i.etsystatic.com/36084915/r/il/6fc659/6945634371/il_300x300.6945634371_nipg.jpg",
"seller": "SakisTsiogkasWood",
"listingType": "Free listing",
"productRate": 4.9,
"numberOfReviews": 575,
"freeShipping": "No",
"productPrice": 164.47,
"priceCurrency": "$",
"originalPrice": "No discount",
"discount": "No discount"
},
{
"productLink": "https://www.etsy.com/listing/4370018140",
"productTitle": "Black Walnut USB 3.0 Hub – 4-Port Extension Dock, Solid Wood Laptop Riser, Premium Desk Organizer",
"productImage": "https://i.etsystatic.com/36084915/r/il/6fc659/6945634371/il_300x300.6945634371_nipg.jpg",
"seller": "IronoodDesigns",
"listingType": "Free listing",
"productRate": null,
"numberOfReviews": null,
"freeShipping": "Yes",
"productPrice": 85.27,
"priceCurrency": "$",
"originalPrice": "No discount",
"discount": "No discount"
},
{
"productLink": "https://www.etsy.com/listing/1256350289",
"productTitle": "Laptop stand wood, laptop riser for desk",
"productImage": "https://i.etsystatic.com/36084915/r/il/6fc659/6945634371/il_300x300.6945634371_nipg.jpg",
"seller": "thehrdwoodltd",
"listingType": "Free listing",
"productRate": 4.9,
"numberOfReviews": 360,
"freeShipping": "Yes",
"productPrice": 25.0,
"priceCurrency": "$",
"originalPrice": 62.5,
"discount": "(60% off)"
},
{
"productLink": "https://www.etsy.com/listing/1552627931",
"productTitle": "Laptop Desk Designed For Lying Down Sitting Posture, Helping To Relax The Neck & Back, Various Positions: Sitting Lying On Bed, Sofa, Floor",
"productImage": "https://i.etsystatic.com/36084915/r/il/6fc659/6945634371/il_300x300.6945634371_nipg.jpg",
"seller": "GpshopCreations",
"listingType": "Free listing",
"productRate": 4.9,
"numberOfReviews": 234,
"freeShipping": "Yes",
"productPrice": 166.0,
"priceCurrency": "$",
"originalPrice": 332.0,
"discount": "(50% off)"
},
{
"productLink": "https://www.etsy.com/listing/842372202",
"productTitle": "Laptop Stand: ergonomic, birch plywood, for MacBooks, portable, parts slide together, great for sit stand desks or table tops.",
"productImage": "https://i.etsystatic.com/36084915/r/il/6fc659/6945634371/il_300x300.6945634371_nipg.jpg",
"seller": "BirchGear",
"listingType": "Free listing",
"productRate": 5.0,
"numberOfReviews": 176,
"freeShipping": "Yes",
"productPrice": 43.0,
"priceCurrency": "$",
"originalPrice": "No discount",
"discount": "No discount"
},
{
"productLink": "https://www.etsy.com/listing/973292729",
"productTitle": "Minimalistic Wooden Laptop Stand, Computer Stand, Office Organizer, Desk Organize, Desk Shelf, Work From Home, Laptop Riser, Laptop Display",
"productImage": "https://i.etsystatic.com/36084915/r/il/6fc659/6945634371/il_300x300.6945634371_nipg.jpg",
"seller": "SSDesignShops",
"listingType": "Free listing",
"productRate": 5.0,
"numberOfReviews": 168,
"freeShipping": "Yes",
"productPrice": 26.25,
"priceCurrency": "$",
"originalPrice": 35.0,
"discount": "(25% off)"
},
{
"productLink": "https://www.etsy.com/listing/4319134049",
"productTitle": "Foldable Wood Laptop Stand for Desk, Laptop Riser Stand, Macbook pro, Macbook air stand, Laptop accessories, Office gift ideas for him, men",
"productImage": "https://i.etsystatic.com/36084915/r/il/6fc659/6945634371/il_300x300.6945634371_nipg.jpg",
"seller": "ShvetsStore",
"listingType": "Free listing",
"productRate": 4.9,
"numberOfReviews": 18,
"freeShipping": "Yes",
"productPrice": 22.5,
"priceCurrency": "$",
"originalPrice": 49.99,
"discount": "(55% off)"
},
{
"productLink": "https://www.etsy.com/listing/1832895239",
"productTitle": "LAPTOP STAND | Wooden Laptop Stand",
"productImage": "https://i.etsystatic.com/36084915/r/il/6fc659/6945634371/il_300x300.6945634371_nipg.jpg",
"seller": "Arnttoon",
"listingType": "Free listing",
"productRate": null,
"numberOfReviews": null,
"freeShipping": "No",
"productPrice": 3.37,
"priceCurrency": "$",
"originalPrice": "No discount",
"discount": "No discount"
},
{
"productLink": "https://www.etsy.com/listing/4367126521",
"productTitle": "Portable Wooden Laptop Stand – Foldable & Ergonomic 12 Degree Angle for Laptops, MacBooks, Notebook Tablets",
"productImage": "https://i.etsystatic.com/36084915/r/il/6fc659/6945634371/il_300x300.6945634371_nipg.jpg",
"seller": "CraftAndKindle",
"listingType": "Free listing",
"productRate": 3.4,
"numberOfReviews": 5,
"freeShipping": "Yes",
"productPrice": 22.89,
"priceCurrency": "$",
"originalPrice": 28.62,
"discount": "(20% off)"
},
{
"productLink": "https://www.etsy.com/listing/977229812",
"productTitle": "Wooden laptop stand for desk ergonomic, macbook stand minimalist in wallnut wood",
"productImage": "https://i.etsystatic.com/36084915/r/il/6fc659/6945634371/il_300x300.6945634371_nipg.jpg",
"seller": "Flampic",
"listingType": "Free listing",
"productRate": 4.8,
"numberOfReviews": 63,
"freeShipping": "Yes",
"productPrice": 65.25,
"priceCurrency": "$",
"originalPrice": 87.0,
"discount": "(25% off)"
},
{
"productLink": "https://www.etsy.com/listing/4302705485",
"productTitle": "Oak Laptop Stand: Ergonomic Wooden Notebook Riser",
"productImage": "https://i.etsystatic.com/36084915/r/il/6fc659/6945634371/il_300x300.6945634371_nipg.jpg",
"seller": "HRDKfamily",
"listingType": "Free listing",
"productRate": 4.8,
"numberOfReviews": 39,
"freeShipping": "Yes",
"productPrice": 37.8,
"priceCurrency": "$",
"originalPrice": 90.0,
"discount": "(58% off)"
},
{
"productLink": "https://www.etsy.com/listing/1879821783",
"productTitle": "Portable Laptop Stand Riser | Compact | Cable Holder| Veteran Made | Customizable |",
"productImage": "https://i.etsystatic.com/36084915/r/il/6fc659/6945634371/il_300x300.6945634371_nipg.jpg",
"seller": "Crazyvetfam",
"listingType": "Free listing",
"productRate": 4.9,
"numberOfReviews": 624,
"freeShipping": "No",
"productPrice": 14.0,
"priceCurrency": "$",
"originalPrice": 20.0,
"discount": "(30% off)"
},
{
"productLink": "https://www.etsy.com/listing/4323218495",
"productTitle": "Handcrafted Walnut Monitor Riser with Live Edge, Modern Desk Shelf with Steel Legs, Ergonomic Computer Stand for Home Office Decor",
"productImage": "https://i.etsystatic.com/58973209/r/il/63af92/6954617412/il_300x300.6954617412_2jec.jpg",
"seller": "WooddyCo",
"listingType": "Free listing",
"productRate": 4.8,
"numberOfReviews": 44,
"freeShipping": "Yes",
"productPrice": 70.0,
"priceCurrency": "$",
"originalPrice": 140.0,
"discount": "(50% off)"
},
{
"productLink": "https://www.etsy.com/listing/4351819886",
"productTitle": "Handmade Natural Wooden Laptop Stands – Set of 2",
"productImage": "https://i.etsystatic.com/58973209/r/il/63af92/6954617412/il_300x300.6954617412_2jec.jpg",
"seller": "CedarPointWoodShop",
"listingType": "Free listing",
"productRate": null,
"numberOfReviews": null,
"freeShipping": "No",
"productPrice": 34.88,
"priceCurrency": "$",
"originalPrice": "No discount",
"discount": "No discount"
},
{
"productLink": "https://www.etsy.com/listing/1644121694",
"productTitle": "Eco Wooden Laptop Stand | Work Wood Laptop Stand | Ergonomic Sustainable Laptop Display Stand | Portable Flat Packed Stand",
"productImage": "https://i.etsystatic.com/58973209/r/il/63af92/6954617412/il_300x300.6954617412_2jec.jpg",
"seller": "StagDesign",
"listingType": "Free listing",
"productRate": 4.9,
"numberOfReviews": 580,
"freeShipping": "No",
"productPrice": 20.19,
"priceCurrency": "$",
"originalPrice": 22.43,
"discount": "(10% off)"
},
{
"productLink": "https://www.etsy.com/listing/1746172337",
"productTitle": "Walnut & Oak Laptop Stand: Ergonomic Wood Desk Riser",
"productImage": "https://i.etsystatic.com/58973209/r/il/63af92/6954617412/il_300x300.6954617412_2jec.jpg",
"seller": "ighomedecorstore",
"listingType": "Free listing",
"productRate": 4.9,
"numberOfReviews": 160,
"freeShipping": "Yes",
"productPrice": 109.65,
"priceCurrency": "$",
"originalPrice": "No discount",
"discount": "No discount"
},
{
"productLink": "https://www.etsy.com/listing/1859143882",
"productTitle": "Wooden Computer Monitor Stand Storage, Desktop Riser Shelf Walnut, Desk Organizer Drawer, Solid Hardwood Riser Cabinet Ergonomic Workstation",
"productImage": "https://i.etsystatic.com/58973209/r/il/63af92/6954617412/il_300x300.6954617412_2jec.jpg",
"seller": "PlotAndCraft",
"listingType": "Free listing",
"productRate": 4.8,
"numberOfReviews": 59,
"freeShipping": "Yes",
"productPrice": 66.5,
"priceCurrency": "$",
"originalPrice": 78.24,
"discount": "(15% off)"
},
{
"productLink": "https://www.etsy.com/listing/4360397706",
"productTitle": "Birthday Gift Wooden Laptop Holder – Folding Laptop Stand for Desk Setup | Minimalist Modern Workspace Accessory, Office Organizer, Job Gift",
"productImage": "https://i.etsystatic.com/58973209/r/il/63af92/6954617412/il_300x300.6954617412_2jec.jpg",
"seller": "CtrlBase",
"listingType": "Free listing",
"productRate": null,
"numberOfReviews": null,
"freeShipping": "Yes",
"productPrice": 40.74,
"priceCurrency": "$",
"originalPrice": 54.32,
"discount": "(25% off)"
},
{
"productLink": "https://www.etsy.com/listing/1877566476",
"productTitle": "Portable Folding Laptop Stand with Cable Coil: Ergonomic Design",
"productImage": "https://i.etsystatic.com/58973209/r/il/63af92/6954617412/il_300x300.6954617412_2jec.jpg",
"seller": "Print3DNorth",
"listingType": "Free listing",
"productRate": 4.9,
"numberOfReviews": 273,
"freeShipping": "No",
"productPrice": 15.92,
"priceCurrency": "$",
"originalPrice": 19.9,
"discount": "(20% off)"
},
{
"productLink": "https://www.etsy.com/listing/1097896728",
"productTitle": "Adjustable Wooden Laptop Stand: Ergonomic MacBook, Tablet Riser",
"productImage": "https://i.etsystatic.com/58973209/r/il/63af92/6954617412/il_300x300.6954617412_2jec.jpg",
"seller": "VintageLifeInc",
"listingType": "Free listing",
"productRate": 4.6,
"numberOfReviews": 394,
"freeShipping": "Yes",
"productPrice": 44.25,
"priceCurrency": "$",
"originalPrice": 59.0,
"discount": "(25% off)"
},
{
"productLink": "https://www.etsy.com/listing/4367622402",
"productTitle": "Fractal Burned Wood Monitor Stand with Resin: Ergonomic Desk Riser",
"productImage": "https://i.etsystatic.com/58973209/r/il/63af92/6954617412/il_300x300.6954617412_2jec.jpg",
"seller": "GiftBoutiqueIN",
"listingType": "Free listing",
"productRate": 5.0,
"numberOfReviews": 4,
"freeShipping": "Yes",
"productPrice": 77.43,
"priceCurrency": "$",
"originalPrice": 119.12,
"discount": "(35% off)"
},
{
"productLink": "https://www.etsy.com/listing/4376391736",
"productTitle": "Wood Laptop Stand - Dual Vertical Dock for MacBook & PC, Personalized or Plain, Handmade Desk Organizer Gift for Men, Home Office Decor",
"productImage": "https://i.etsystatic.com/58973209/r/il/63af92/6954617412/il_300x300.6954617412_2jec.jpg",
"seller": "DujeHome",
"listingType": "Free listing",
"productRate": null,
"numberOfReviews": null,
"freeShipping": "Yes",
"productPrice": 40.99,
"priceCurrency": "$",
"originalPrice": 81.98,
"discount": "(50% off)"
},
{
"productLink": "https://www.etsy.com/listing/1049967710",
"productTitle": "Personalised Portable Wooden Laptop Riser/ Notebook, Macbook Wood Stand Holder / Custom Engraved Office Organiser/ Work From Home - 12-15.6\"",
"productImage": "https://i.etsystatic.com/58973209/r/il/63af92/6954617412/il_300x300.6954617412_2jec.jpg",
"seller": "YoonekGifts",
"listingType": "Free listing",
"productRate": 4.7,
"numberOfReviews": 610,
"freeShipping": "Yes",
"productPrice": 42.37,
"priceCurrency": "$",
"originalPrice": "No discount",
"discount": "No discount"
},
{
"productLink": "https://www.etsy.com/listing/885461897",
"productTitle": "Reclaimed wooden laptop stand",
"productImage": "https://i.etsystatic.com/58973209/r/il/63af92/6954617412/il_300x300.6954617412_2jec.jpg",
"seller": "OneManGathersStudio",
"listingType": "Free listing",
"productRate": 5.0,
"numberOfReviews": 78,
"freeShipping": "Yes",
"productPrice": 35.0,
"priceCurrency": "$",
"originalPrice": "No discount",
"discount": "No discount"
},
{
"productLink": "https://www.etsy.com/listing/4385991884",
"productTitle": "Black Walnut Laptop Riser.Wooden Laptop Stand for desk,Laptop Riser Wood,macbook pro stand,wood laptop holder desk,macbook riser,Gift",
"productImage": "https://i.etsystatic.com/58973209/r/il/63af92/6954617412/il_300x300.6954617412_2jec.jpg",
"seller": "MosaicStudioTH",
"listingType": "Free listing",
"productRate": null,
"numberOfReviews": null,
"freeShipping": "Yes",
"productPrice": 97.0,
"priceCurrency": "$",
"originalPrice": 194.0,
"discount": "(50% off)"
},
{
"productLink": "https://www.etsy.com/listing/4305945965",
"productTitle": "Foldable 10-way laptop stand – your flexible helper for more ergonomic working | portable | adjustable",
"productImage": "https://i.etsystatic.com/58973209/r/il/63af92/6954617412/il_300x300.6954617412_2jec.jpg",
"seller": "Meliphoria",
"listingType": "Free listing",
"productRate": 5.0,
"numberOfReviews": 5,
"freeShipping": "No",
"productPrice": 15.48,
"priceCurrency": "$",
"originalPrice": "No discount",
"discount": "No discount"
},
{
"productLink": "https://www.etsy.com/listing/1811987499",
"productTitle": "Minimalist Black Laptop Stand: Ergonomic Travel-Friendly Notebook Riser",
"productImage": "https://i.etsystatic.com/58973209/r/il/63af92/6954617412/il_300x300.6954617412_2jec.jpg",
"seller": "RazomUK",
"listingType": "Free listing",
"productRate": 4.9,
"numberOfReviews": 298,
"freeShipping": "No",
"productPrice": 7.0,
"priceCurrency": "$",
"originalPrice": "No discount",
"discount": "No discount"
},
{
"productLink": "https://www.etsy.com/listing/1720130918",
"productTitle": "Wooden laptop riser for desk,wooden laptop stand, laptop holder desk,macbook riser.laptop accessories, foldable wooden laptop stand for desk",
"productImage": "https://i.etsystatic.com/58973209/r/il/63af92/6954617412/il_300x300.6954617412_2jec.jpg",
"seller": "WoodLightMaker",
"listingType": "Free listing",
"productRate": null,
"numberOfReviews": null,
"freeShipping": "No",
"productPrice": 35.0,
"priceCurrency": "$",
"originalPrice": "No discount",
"discount": "No discount"
},
{
"productLink": "https://www.etsy.com/listing/1234161308",
"productTitle": "Wood Vertical Laptop Stand for Desk Setup, Dual Laptop Holder for Desk Organization, Walnut Macbook Pro home office,",
"productImage": "https://i.etsystatic.com/58973209/r/il/63af92/6954617412/il_300x300.6954617412_2jec.jpg",
"seller": "thehrdwoodltd",
"listingType": "Free listing",
"productRate": 4.9,
"numberOfReviews": 360,
"freeShipping": "Yes",
"productPrice": 39.0,
"priceCurrency": "$",
"originalPrice": 65.0,
"discount": "(40% off)"
},
{
"productLink": "https://www.etsy.com/listing/1256350145",
"productTitle": "Long laptop stand for desk, Wood laptop stand for desk, Wooden laptop stand macbook, Wood Stand, Wood riser, Ergonomic laptop stand",
"productImage": "https://i.etsystatic.com/58973209/r/il/63af92/6954617412/il_300x300.6954617412_2jec.jpg",
"seller": "thehrdwoodltd",
"listingType": "Free listing",
"productRate": 4.9,
"numberOfReviews": 360,
"freeShipping": "Yes",
"productPrice": 25.0,
"priceCurrency": "$",
"originalPrice": 62.5,
"discount": "(60% off)"
},
{
"productLink": "https://www.etsy.com/listing/1745008192",
"productTitle": "Long Personalized Wooden Laptop Stand - Desk Riser for Improved Ergonomics",
"productImage": "https://i.etsystatic.com/58973209/r/il/63af92/6954617412/il_300x300.6954617412_2jec.jpg",
"seller": "thehrdwoodltd",
"listingType": "Free listing",
"productRate": 4.9,
"numberOfReviews": 360,
"freeShipping": "Yes",
"productPrice": 25.0,
"priceCurrency": "$",
"originalPrice": 62.5,
"discount": "(60% off)"
},
{
"productLink": "https://www.etsy.com/listing/1039495334",
"productTitle": "TANDIE laptop stand, wood laptop riser, macbook stand, wooden stand",
"productImage": "https://i.etsystatic.com/58973209/r/il/63af92/6954617412/il_300x300.6954617412_2jec.jpg",
"seller": "beepart",
"listingType": "Free listing",
"productRate": 4.9,
"numberOfReviews": 380,
"freeShipping": "Yes",
"productPrice": 33.43,
"priceCurrency": "$",
"originalPrice": "No discount",
"discount": "No discount"
},
{
"productLink": "https://www.etsy.com/listing/1179229435",
"productTitle": "Acrylic Laptop and Phone Stand: Ergonomic Desktop Riser, Made in USA",
"productImage": "https://i.etsystatic.com/58973209/r/il/63af92/6954617412/il_300x300.6954617412_2jec.jpg",
"seller": "VrayDesignsLLC",
"listingType": "Free listing",
"productRate": 5.0,
"numberOfReviews": 108,
"freeShipping": "Yes",
"productPrice": 49.99,
"priceCurrency": "$",
"originalPrice": "No discount",
"discount": "No discount"
},
{
"productLink": "https://www.etsy.com/listing/1113006148",
"productTitle": "Bamboo Device Organizer for Smartphones, Tablets and Laptops, 7 Slots with Extra Wide Slots for Laptops",
"productImage": "https://i.etsystatic.com/58973209/r/il/63af92/6954617412/il_300x300.6954617412_2jec.jpg",
"seller": "Mobilevision",
"listingType": "Free listing",
"productRate": 4.8,
"numberOfReviews": 607,
"freeShipping": "Yes",
"productPrice": 47.95,
"priceCurrency": "$",
"originalPrice": "No discount",
"discount": "No discount"
},
{
"productLink": "https://www.etsy.com/listing/1446477510",
"productTitle": "Vertical Laptop Stand, Wooden MacBook Pro Air Holder, Adjustable Notebook Dock, Wood Desk Accessories, Home Office Organizer",
"productImage": "https://i.etsystatic.com/58973209/r/il/63af92/6954617412/il_300x300.6954617412_2jec.jpg",
"seller": "CHOPZWOOD",
"listingType": "Free listing",
"productRate": 5.0,
"numberOfReviews": 177,
"freeShipping": "No",
"productPrice": 51.78,
"priceCurrency": "$",
"originalPrice": 60.92,
"discount": "(15% off)"
},
{
"productLink": "https://www.etsy.com/listing/961001537",
"productTitle": "Laptop Stand / Riser of recycled wood made in Canada",
"productImage": "https://i.etsystatic.com/58973209/r/il/63af92/6954617412/il_300x300.6954617412_2jec.jpg",
"seller": "EcoFurnitureDesigns",
"listingType": "Free listing",
"productRate": 5.0,
"numberOfReviews": 174,
"freeShipping": "No",
"productPrice": 17.09,
"priceCurrency": "$",
"originalPrice": "No discount",
"discount": "No discount"
},
{
"productLink": "https://www.etsy.com/listing/1478552139",
"productTitle": "Wooden Adjustable Width Vertical Laptop Stand,Personalized Notebook Holder,Wooden Vertical Holder for Laptop/Tablet/iPhone,Desktop Organizer",
"productImage": "https://i.etsystatic.com/58973209/r/il/63af92/6954617412/il_300x300.6954617412_2jec.jpg",
"seller": "kajostore",
"listingType": "Free listing",
"productRate": 4.9,
"numberOfReviews": 860,
"freeShipping": "Yes",
"productPrice": 35.99,
"priceCurrency": "$",
"originalPrice": "No discount",
"discount": "No discount"
},
{
"productLink": "https://www.etsy.com/listing/4372564413",
"productTitle": "Collapsible Laptop Stand",
"productImage": "https://i.etsystatic.com/58973209/r/il/63af92/6954617412/il_300x300.6954617412_2jec.jpg",
"seller": "PrintsbyMarkCo",
"listingType": "Free listing",
"productRate": 5.0,
"numberOfReviews": 25,
"freeShipping": "No",
"productPrice": 10.0,
"priceCurrency": "$",
"originalPrice": "No discount",
"discount": "No discount"
},
{
"productLink": "https://www.etsy.com/listing/977854999",
"productTitle": "Laptop Stand - 3D Printed - Adjustable and Portable!",
"productImage": "https://i.etsystatic.com/58973209/r/il/63af92/6954617412/il_300x300.6954617412_2jec.jpg",
"seller": "mcs3Dstudios",
"listingType": "Free listing",
"productRate": 5.0,
"numberOfReviews": 879,
"freeShipping": "No",
"productPrice": 19.99,
"priceCurrency": "$",
"originalPrice": "No discount",
"discount": "No discount"
},
{
"productLink": "https://www.etsy.com/listing/4338670554",
"productTitle": "Portable 3D Printed Laptop Stand – Lightweight Collapsible Riser for Travel, Desk, and Home Office",
"productImage": "https://i.etsystatic.com/58973209/r/il/63af92/6954617412/il_300x300.6954617412_2jec.jpg",
"seller": "KitForge",
"listingType": "Free listing",
"productRate": 4.8,
"numberOfReviews": 167,
"freeShipping": "No",
"productPrice": 12.99,
"priceCurrency": "$",
"originalPrice": "No discount",
"discount": "No discount"
},
{
"productLink": "https://www.etsy.com/listing/4370627650",
"productTitle": "Handcrafted wooden laptop stand – ergonomic notebook holder for your home office",
"productImage": "https://i.etsystatic.com/58973209/r/il/63af92/6954617412/il_300x300.6954617412_2jec.jpg",
"seller": "WoodenAlps",
"listingType": "Free listing",
"productRate": null,
"numberOfReviews": null,
"freeShipping": "No",
"productPrice": 71.88,
"priceCurrency": "$",
"originalPrice": "No discount",
"discount": "No discount"
},
{
"productLink": "https://www.etsy.com/listing/1709106719",
"productTitle": "Handcrafted Wooden Laptop Riser: Ergonomic Macbook Stand",
"productImage": "https://i.etsystatic.com/58973209/r/il/63af92/6954617412/il_300x300.6954617412_2jec.jpg",
"seller": "OakHillHome",
"listingType": "Free listing",
"productRate": 4.8,
"numberOfReviews": 23,
"freeShipping": "No",
"productPrice": 38.38,
"priceCurrency": "$",
"originalPrice": 54.82,
"discount": "(30% off)"
},
{
"productLink": "https://www.etsy.com/listing/1088287670",
"productTitle": "Laser Cut Wood Phone Stands",
"productImage": "https://i.etsystatic.com/58973209/r/il/63af92/6954617412/il_300x300.6954617412_2jec.jpg",
"seller": "LoveYouBigCo",
"listingType": "Free listing",
"productRate": 4.8,
"numberOfReviews": 697,
"freeShipping": "No",
"productPrice": 14.95,
"priceCurrency": "$",
"originalPrice": "No discount",
"discount": "No discount"
},
{
"productLink": "https://www.etsy.com/listing/971383499",
"productTitle": "Handmade Wooden Monitor Stand: Foldable Laptop Bed Tray",
"productImage": "https://i.etsystatic.com/58973209/r/il/63af92/6954617412/il_300x300.6954617412_2jec.jpg",
"seller": "FalkelDesign",
"listingType": "Free listing",
"productRate": 4.9,
"numberOfReviews": 1750,
"freeShipping": "Yes",
"productPrice": 112.45,
"priceCurrency": "$",
"originalPrice": 224.9,
"discount": "(50% off)"
},
{
"productLink": "https://www.etsy.com/listing/4361660091",
"productTitle": "Handmade Wooden Laptop Riser: Ergonomic Rustic Desk Stand",
"productImage": "https://i.etsystatic.com/58973209/r/il/63af92/6954617412/il_300x300.6954617412_2jec.jpg",
"seller": "WoodPalaceShop",
"listingType": "Free listing",
"productRate": null,
"numberOfReviews": null,
"freeShipping": "No",
"productPrice": 15.0,
"priceCurrency": "$",
"originalPrice": "No discount",
"discount": "No discount"
},
{
"productLink": "https://www.etsy.com/listing/4311406435",
"productTitle": "Adjustable Wooden Laptop Stand | Ergonomic Desk Riser for Home Office | Fold able, Portable and Eco-Friendly | Ideal for Work & Study",
"productImage": "https://i.etsystatic.com/58973209/r/il/63af92/6954617412/il_300x300.6954617412_2jec.jpg",
"seller": "RazadesignsByAli",