-
Notifications
You must be signed in to change notification settings - Fork 0
/
en_docs.html
2556 lines (2548 loc) · 145 KB
/
en_docs.html
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
<!DOCTYPE html>
<html style="font-size: 16px;" lang="tr">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta charset="utf-8">
<meta name="keywords" content="Özgür ve Açık kaynak üzerinde kurulu, Ücretsiz">
<meta name="description" content="Artado Software ürünlerine ait dökümentasyon sayfası">
<title>Artado Docs</title>
<link rel="stylesheet" href="../capp.artado.com/98c7f1662faa76b8ba817a9982d3dadc472b928f/artado.css" media="screen">
<link rel="stylesheet" href="artado-site.css" media="screen">
<link rel="stylesheet" href="en_docs.css" media="screen">
<script class="u-script" type="text/javascript" src="../capp.artado.com/assets/jquery-3.5.1.min.js" defer=""></script>
<script class="u-script" type="text/javascript" src="../capp.artado.com/98c7f1662faa76b8ba817a9982d3dadc472b928f/artado.js" defer=""></script>
<meta name="generator" content="Html">
<link rel="icon" href="favicon.ico">
<link id="u-theme-google-font" rel="stylesheet" href="https://fonts.googleapis.com/css?family=PT+Sans:400,400i,700,700i|Open+Sans:300,300i,400,400i,500,500i,600,600i,700,700i,800,800i">
<link id="u-page-google-font" rel="stylesheet" href="https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,500,500i,600,600i,700,700i,800,800i">
<script type="application/ld+json">{
"@context": "http://schema.org",
"@type": "Organization",
"name": "Artado Docs",
"logo": "https://assets.nicepagecdn.com/c673698b/6336722/images/artado.png",
"sameAs": []
}</script>
<meta name="theme-color" content="#9693e6">
<meta property="og:title" content="en_docs">
<meta property="og:description" content="Artado Software ürünlerine ait dökümentasyon sayfası">
<meta property="og:type" content="website">
</head>
<body data-path-to-root="/" data-include-products="false" class="u-body u-xl-mode" data-lang="tr"><header class="u-align-center-sm u-align-center-xs u-clearfix u-custom-color-1 u-header u-header" id="sec-a26b"><div class="u-clearfix u-sheet u-sheet-1">
<a href="#" class="u-image u-logo u-image-1" data-image-width="607" data-image-height="606">
<img src="../assets.artadocdn.com/c673698b/6336722/images/artado.png" class="u-logo-image u-logo-image-1">
</a>
<div class="u-social-icons u-spacing-10 u-social-icons-1">
<a class="u-social-url" target="_blank" data-type="Github" title="Github" href="https://github.com/Artado-Project"><span class="u-icon u-social-github u-social-icon u-icon-1"><svg class="u-svg-link" preserveAspectRatio="xMidYMin slice" viewBox="0 0 112 112" style=""><use xlink:href="#svg-cd35"></use></svg><svg class="u-svg-content" viewBox="0 0 112 112" x="0" y="0" id="svg-cd35"><circle fill="currentColor" cx="56.1" cy="56.1" r="55"></circle><path fill="#FFFFFF" d="M88,51.3c0-5.5-1.9-10.2-5.3-13.7c0.6-1.3,2.3-6.5-0.5-13.5c0,0-4.2-1.4-14,5.3c-4.1-1.1-8.4-1.7-12.7-1.8
c-4.3,0-8.7,0.6-12.7,1.8c-9.7-6.6-14-5.3-14-5.3c-2.8,7-1,12.2-0.5,13.5C25,41.2,23,45.7,23,51.3c0,19.6,11.9,23.9,23.3,25.2
c-1.5,1.3-2.8,3.5-3.2,6.8c-3,1.3-10.2,3.6-14.9-4.3c0,0-2.7-4.9-7.8-5.3c0,0-5-0.1-0.4,3.1c0,0,3.3,1.6,5.6,7.5c0,0,3,9.1,17.2,6
c0,4.3,0.1,8.3,0.1,9.5h25.2c0-1.7,0.1-7.2,0.1-14c0-4.7-1.7-7.9-3.4-9.4C76,75.2,88,70.9,88,51.3z"></path></svg></span>
</a>
<a class="u-social-url" title="instagram" target="_blank" href="#"><span class="u-icon u-social-icon u-social-instagram u-icon-2"><svg class="u-svg-link" preserveAspectRatio="xMidYMin slice" viewBox="0 0 112 112" style=""><use xlink:href="#svg-e102"></use></svg><svg class="u-svg-content" viewBox="0 0 112 112" x="0" y="0" id="svg-e102"><circle fill="currentColor" cx="56.1" cy="56.1" r="55"></circle><path fill="#FFFFFF" d="M55.9,38.2c-9.9,0-17.9,8-17.9,17.9C38,66,46,74,55.9,74c9.9,0,17.9-8,17.9-17.9C73.8,46.2,65.8,38.2,55.9,38.2
z M55.9,66.4c-5.7,0-10.3-4.6-10.3-10.3c-0.1-5.7,4.6-10.3,10.3-10.3c5.7,0,10.3,4.6,10.3,10.3C66.2,61.8,61.6,66.4,55.9,66.4z"></path><path fill="#FFFFFF" d="M74.3,33.5c-2.3,0-4.2,1.9-4.2,4.2s1.9,4.2,4.2,4.2s4.2-1.9,4.2-4.2S76.6,33.5,74.3,33.5z"></path><path fill="#FFFFFF" d="M73.1,21.3H38.6c-9.7,0-17.5,7.9-17.5,17.5v34.5c0,9.7,7.9,17.6,17.5,17.6h34.5c9.7,0,17.5-7.9,17.5-17.5V38.8
C90.6,29.1,82.7,21.3,73.1,21.3z M83,73.3c0,5.5-4.5,9.9-9.9,9.9H38.6c-5.5,0-9.9-4.5-9.9-9.9V38.8c0-5.5,4.5-9.9,9.9-9.9h34.5
c5.5,0,9.9,4.5,9.9,9.9V73.3z"></path></svg></span>
</a>
<a class="u-social-url" target="_blank" data-type="YouTube" title="YouTube" href="https://www.youtube.com/watch?v=yJNK3XUDZMI"><span class="u-icon u-social-icon u-social-youtube u-icon-3"><svg class="u-svg-link" preserveAspectRatio="xMidYMin slice" viewBox="0 0 112 112" style=""><use xlink:href="#svg-0011"></use></svg><svg class="u-svg-content" viewBox="0 0 112 112" x="0" y="0" id="svg-0011"><circle fill="currentColor" cx="56.1" cy="56.1" r="55"></circle><path fill="#FFFFFF" d="M74.9,33.3H37.3c-7.4,0-13.4,6-13.4,13.4v18.8c0,7.4,6,13.4,13.4,13.4h37.6c7.4,0,13.4-6,13.4-13.4V46.7 C88.3,39.3,82.3,33.3,74.9,33.3L74.9,33.3z M65.9,57l-17.6,8.4c-0.5,0.2-1-0.1-1-0.6V47.5c0-0.5,0.6-0.9,1-0.6l17.6,8.9 C66.4,56,66.4,56.8,65.9,57L65.9,57z"></path></svg></span>
</a>
<a class="u-social-url" target="_blank" data-type="RSS" title="RSS" href="#"><span class="u-icon u-social-icon u-social-rss u-icon-4"><svg class="u-svg-link" preserveAspectRatio="xMidYMin slice" viewBox="0 0 112 112" style=""><use xlink:href="#svg-baa0"></use></svg><svg class="u-svg-content" viewBox="0 0 112 112" x="0" y="0" id="svg-baa0"><circle fill="currentColor" cx="56.1" cy="56.1" r="55"></circle><circle fill="#FFFFFF" cx="33.9" cy="78.3" r="8.9"></circle><path fill="#FFFFFF" d="M25,45.8v11.8c16.3,0,29.6,13.3,29.6,29.6h11.8C66.4,64.3,47.9,45.8,25,45.8z"></path><path fill="#FFFFFF" d="M25,25v11.8c27.7,0,50.3,22.5,50.3,50.3h11.8C87.1,52.9,59.3,25,25,25z"></path></svg></span>
</a>
</div>
<nav class="u-align-left u-menu u-menu-dropdown u-offcanvas u-menu-1">
<div class="menu-collapse" style="font-size: 1rem;">
<a class="u-button-style u-nav-link" href="#">
<svg class="u-svg-link" preserveAspectRatio="xMidYMin slice" viewBox="0 0 302 302" style=""><use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#svg-8a8f"></use></svg>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" id="svg-8a8f" x="0px" y="0px" viewBox="0 0 302 302" style="enable-background:new 0 0 302 302;" xml:space="preserve" class="u-svg-content"><g><rect y="36" width="302" height="30"></rect><rect y="236" width="302" height="30"></rect><rect y="136" width="302" height="30"></rect>
</g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g></svg>
</a>
</div>
<div class="u-custom-menu u-nav-container">
<ul class="u-nav u-unstyled u-nav-1"><li class="u-nav-item"><a class="u-button-style u-nav-link u-text-active-palette-1-base u-text-hover-palette-2-base" href="index.html" style="padding: 10px 20px;">Ana Sayfa</a><div class="u-nav-popup"><ul class="u-h-spacing-20 u-nav u-unstyled u-v-spacing-10 u-nav-2"><li class="u-nav-item"><a class="u-button-style u-nav-link u-white" href="en_docs.html">Home</a>
</li></ul>
</div>
</li><li class="u-nav-item"><a class="u-button-style u-nav-link u-text-active-palette-1-base u-text-hover-palette-2-base" href="documentation.html" style="padding: 10px 20px;">Dökümentasyon</a><div class="u-nav-popup"><ul class="u-h-spacing-20 u-nav u-unstyled u-v-spacing-10 u-nav-3"><li class="u-nav-item"><a class="u-button-style u-nav-link u-white" href="en_docs.html">Documentation (EN)</a>
</li></ul>
</div>
</li><li class="u-nav-item"><a class="u-button-style u-nav-link u-text-active-palette-1-base u-text-hover-palette-2-base" href="https://devs.artado.xyz/" target="_blank" style="padding: 10px 20px;">Artado Store</a>
</li><li class="u-nav-item"><a class="u-button-style u-nav-link u-text-active-palette-1-base u-text-hover-palette-2-base" href="https://forum.artado.xyz/" target="_blank" style="padding: 10px 20px;">Forum</a>
</li><li class="u-nav-item"><a class="u-button-style u-nav-link u-text-active-palette-1-base u-text-hover-palette-2-base" href="https://artadosearch.com/manifest" style="padding: 10px 20px;">Manifesto</a>
</li></ul>
</div>
<div class="u-custom-menu u-nav-container-collapse">
<div class="u-align-center u-black u-container-align-center u-container-style u-inner-container-layout u-opacity u-opacity-95 u-sidenav">
<div class="u-inner-container-layout u-sidenav-overflow">
<div class="u-menu-close"></div>
<ul class="u-align-center u-nav u-popupmenu-items u-unstyled u-nav-4"><li class="u-nav-item"><a class="u-button-style u-nav-link" href="index.html">Home</a><div class="u-nav-popup"><ul class="u-h-spacing-20 u-nav u-unstyled u-v-spacing-10 u-nav-5"><li class="u-nav-item"><a class="u-button-style u-nav-link" href="en_docs.html">Home</a>
</li></ul>
</div>
</li><li class="u-nav-item"><a class="u-button-style u-nav-link" href="documentation.html">Dökümentasyon</a><div class="u-nav-popup"><ul class="u-h-spacing-20 u-nav u-unstyled u-v-spacing-10 u-nav-6"><li class="u-nav-item"><a class="u-button-style u-nav-link" href="en_docs.html">Documentation (EN)</a>
</li></ul>
</div>
</li><li class="u-nav-item"><a class="u-button-style u-nav-link" href="https://devs.artado.xyz/" target="_blank">Artado Store</a>
</li><li class="u-nav-item"><a class="u-button-style u-nav-link" href="https://forum.artado.xyz/" target="_blank">Forum</a>
</li><li class="u-nav-item"><a class="u-button-style u-nav-link" href="https://artadosearch.com/manifest">Manifest</a>
</li></ul>
</div>
</div>
<div class="u-black u-menu-overlay u-opacity u-opacity-70"></div>
</div>
</nav>
</div></header>
<section class="u-align-center u-clearfix u-container-align-center u-grey-80 u-section-1" id="sec-2fcc">
<div class="u-clearfix u-sheet u-valign-top u-sheet-1">
<h2 class="u-text u-text-default u-text-1">User Guide</h2>
<div class="u-accordion u-spacing-10 u-accordion-1">
<div class="u-accordion-item">
<a class="active u-accordion-link u-active-grey-75 u-button-style u-grey-75 u-hover-grey-70 u-radius-10 u-text-active-white u-text-grey-30 u-text-hover-white u-accordion-link-1" id="link-accordion-0781" aria-controls="accordion-0781" aria-selected="true">
<span class="u-accordion-link-text">User Guide</span><span class="u-accordion-link-icon u-icon u-text-grey-40 u-icon-1"><svg class="u-svg-link" preserveAspectRatio="xMidYMin slice" viewBox="0 0 42 42" style=""><use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#svg-3644"></use></svg><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" xml:space="preserve" class="u-svg-content" viewBox="0 0 42 42" x="0px" y="0px" id="svg-3644" style="enable-background:new 0 0 42 42;"><polygon points="42,20 22,20 22,0 20,0 20,20 0,20 0,22 20,22 20,42 22,42 22,22 42,22 "></polygon></svg></span>
</a>
<div class="u-accordion-active u-accordion-pane u-container-style u-grey-80 u-accordion-pane-1" id="accordion-0781" aria-labelledby="link-accordion-0781">
<div class="u-container-layout u-container-layout-1">
<div class="custom-expanded u-clearfix u-custom-html u-custom-html-1">
<h1 id="user-guide-for-artado-search">User Guide for Artado Search</h1>
<p>Welcome to the Artado Search User Guide! This documentation is designed to help you make the most out of Artado Search by guiding you through its various features and functionalities.</p>
<h2 id="table-of-contents">Table of Contents</h2>
<ol>
<li>
<a href="#introduction-to-artado-search">Introduction to Artado Search</a>
</li>
<li>
<a href="#getting-started">Getting Started</a>
<ul>
<li>
<a href="#how-to-set-artado-as-your-default-search-engine">How to Set Artado as Your Default Search Engine</a>
</li>
<li>
<a href="#basic-search">Basic Search</a>
</li>
<li>
<a href="#using-advanced-search">Using Advanced Search</a>
</li>
</ul>
</li>
<li>
<a href="#customizing-artado-search">Customizing Artado Search</a>
<ul>
<li>
<a href="#themes">Themes</a>
</li>
<li>
<a href="#extensions">Extensions</a>
</li>
</ul>
</li>
<li>
<a href="#managing-your-search-preferences">Managing Your Search Preferences</a>
<ul>
<li>
<a href="#setting-preferences">Setting Preferences</a>
</li>
<li>
<a href="#saving-search-settings">Saving Search Settings</a>
</li>
</ul>
</li>
<li>
<a href="#using-artado-proxies">Using Artado Proxies</a>
</li>
<li>
<a href="#contributing-to-artado">Contributing to Artado</a>
</li>
<li>
<a href="#faq">FAQ</a>
</li>
<li>
<a href="#getting-help">Getting Help</a>
</li>
</ol>
<hr>
<h2 id="introduction-to-artado-search">Introduction to Artado Search</h2>
<p>Artado Search is a powerful and customizable search engine designed to provide fast, private, and accurate search results. Whether you’re looking for web pages, images, or news, Artado Search delivers what you need while respecting your privacy.</p>
<h2 id="getting-started">Getting Started</h2>
<h3 id="how-to-set-artado-as-your-default-search-engine">How to Set Artado as Your Default Search Engine</h3>
<p>To make the most out of Artado Search, you might want to set it as your default search engine. Here’s how you can do it:</p>
<ol>
<li>
<p>
<strong>Google Chrome</strong>:
</p>
<ul>
<li>Open Chrome and go to <a href="https://www.artadosearch.com/">Artado Search</a>.
</li>
<li>Click on the three vertical dots in the top-right corner.</li>
<li>Select <strong>Settings</strong> > <strong>Search engine</strong> > <strong>Manage search engines</strong>.
</li>
<li>Add Artado Search using the following settings:<ul>
<li>
<strong>Search engine</strong>: Artado Search
</li>
<li>
<strong>Keyword</strong>: artado
</li>
<li>
<strong>URL with %s in place of query</strong>: <code>https://www.artadosearch.com/search?q=%s</code>
</li>
</ul>
</li>
<li>Set Artado as the default search engine.</li>
</ul>
</li>
<li>
<p>
<strong>Firefox</strong>:
</p>
<ul>
<li>Open Firefox and go to <a href="https://www.artadosearch.com/">Artado Search</a>.
</li>
<li>Click on the search bar and select <strong>Change Search Settings</strong>.
</li>
<li>Scroll down to <strong>One-Click Search Engines</strong> and click <strong>Add</strong> next to Artado.
</li>
<li>Make Artado the default by selecting it from the list.</li>
</ul>
</li>
<li>
<p>
<strong>Microsoft Edge</strong>:
</p>
<ul>
<li>Open Edge and go to <a href="https://www.artadosearch.com/">Artado Search</a>.
</li>
<li>Click on the three horizontal dots in the top-right corner.</li>
<li>Select <strong>Settings</strong> > <strong>Privacy, search, and services</strong> > <strong>Address bar and search</strong>.
</li>
<li>Add Artado Search as a new search engine with the following settings:<ul>
<li>
<strong>Name</strong>: Artado Search
</li>
<li>
<strong>Keyword</strong>: artado
</li>
<li>
<strong>URL with %s in place of query</strong>: <code>https://www.artadosearch.com/search?q=%s</code>
</li>
</ul>
</li>
<li>Set it as your default search engine.</li>
</ul>
</li>
</ol>
<h3 id="basic-search">Basic Search</h3>
<p>Using Artado Search is straightforward. Simply enter your search term in the search bar and hit <strong>Enter</strong>. Artado will return a list of relevant results sorted by relevance and date.
</p>
<h3 id="using-advanced-search">Using Advanced Search</h3>
<p>For more specific searches, you can use the advanced search features:</p>
<ul>
<li>
<strong>Exact Phrase</strong>: Use quotes (<code>"like this"</code>) around your search term to find results with that exact phrase.
</li>
<li>
<strong>Exclude Words</strong>: Use a minus sign (<code>-</code>) before a word to exclude results containing that word.
</li>
<li>
<strong>Search Specific Sites</strong>: Use <code>site:example.com</code> to search within a specific website.
</li>
</ul>
<p>Example: <code>artificial intelligence site:wikipedia.org</code>
</p>
<h2 id="customizing-artado-search">Customizing Artado Search</h2>
<h3 id="themes">Themes</h3>
<p>Artado Search allows you to customize its appearance through themes. Here’s how you can create and apply themes:</p>
<ol>
<li>
<strong>Choose a Theme</strong>: Visit the <a href="#">Themes</a> page to browse available themes created by the Artado community.
</li>
<li>
<strong>Create Your Own Theme</strong>: Follow the guide in the <a href="Developer%20Guide/How%20to%20Develop%20an%20Artado%20Extension.html">How to Develop an Artado Theme</a> to create your own custom theme using CSS.
</li>
</ol>
<h3 id="extensions">Extensions</h3>
<p>Extend the functionality of Artado Search by developing and installing extensions. These are JavaScript-based custom scripts that can add features like dictionary lookups, instant translation, and more.</p>
<ul>
<li>
<strong>Learn How to Develop Extensions</strong>: Check out our <a href="Developer%20Guide/How%20to%20Develop%20an%20Artado%20Extension.html">How to Develop an Artado Extension</a> guide.
</li>
<li>
<strong>Install Extensions</strong>: Browse and install extensions from the <a href="https://devs.artado.xyz/">Artado Devs</a> community site.
</li>
</ul>
<h2 id="managing-your-search-preferences">Managing Your Search Preferences</h2>
<h3 id="setting-preferences">Setting Preferences</h3>
<p>Artado Search allows you to customize your search experience by adjusting various settings. To access the settings:</p>
<ol>
<li>Click on the <strong>Settings</strong> icon on the menu.
</li>
<li>Adjust the following options:<ul>
<li>
<strong>Theme</strong>: Select your preferred theme, you can also find more themes from Workshop.
</li>
<li>
<strong>Language</strong>: Set your preferred search language.
</li>
<li>
<strong>Logo</strong>: Select your preferred logo, you can also find more logos from Workshop.
</li>
<li>
<strong>Categories</strong>: Select your preferred location of the search categories.
</li>
</ul>
</li>
</ol>
<h3 id="saving-search-settings">Saving Search Settings</h3>
<p>Your search settings can be saved for future sessions. To save your settings:</p>
<ol>
<li>After adjusting your settings, click <strong>Apply</strong>.
</li>
<li>You can save your preferences with creating a <a href="https://www.artadosearch.com/Settings/Profiles">Profile</a>.
</li>
</ol>
<h2 id="using-artado-proxies">Using Artado Proxies</h2>
<p>Artado Proxies allow you to access Artado Search through different servers, enhancing privacy and access. Artado automatically
connects you to one of the proxies that is in the Artado database. To setup a proxy:</p>
<ol>
<li>Host an <a href="https://github.com/Artado-Project/ArtadoProxy">Artado Proxy</a>.
</li>
<li>Got to <a href="https://www.artadosearch.com/Settings/Proxy">Proxy</a> page on settings.
</li>
<li>Enter the URL of your proxy.</li>
<li>Check the "Allow other users to use this proxy." to add your proxy to the Artado database.</li>
<li>Click "Apply"</li>
</ol>
<h2 id="contributing-to-artado">Contributing to Artado</h2>
<p>Artado is a community-driven project, and there are many ways you can contribute:</p>
<ol>
<li>
<strong>Use Artado</strong>: Make Artado your default search engine and recommend it to others.
</li>
<li>
<strong>Donate</strong>: Support the project by donating from <a href="https://www.patreon.com/artadosoft">Patreon</a> or <a href="https://kreosus.com/artadosoft">Kreosus</a>.
</li>
<li>
<strong>Contribute Code</strong>: Join the development efforts by contributing to the codebase. Check out the <a href="https://github.com/Artado-Project/artadosearch/CONTRIBUTING.md">Contributing Guide</a>.
</li>
<li>
<strong>Host a Proxy</strong>: Host an Artado Proxy to help expand the network. Learn more <a href="https://github.com/Artado-Project/ArtadoProxy">here</a>.
</li>
<li>
<strong>Create Themes and Extensions</strong>: Develop themes and extensions to enhance the user experience.
</li>
</ol>
<h2 id="faq">FAQ</h2>
<p>Visit the <a href="FAQ.html">FAQ</a> section to find answers to common questions about using Artado Search.
</p>
<h2 id="getting-help">Getting Help</h2>
<p>If you need help or have questions that aren’t covered in this guide:</p>
<ol>
<li>
<strong>Community Forums</strong>: Join the discussion on the <a href="https://forum.artado.xyz/">Artado Community Forum</a>.
</li>
<li>
<strong>Contact Support</strong>: Reach out to the support team via <a href="mailto:[email protected]">email</a>.
</li>
</ol>
</div>
</div>
</div>
</div>
<div class="u-accordion-item">
<a class="u-accordion-link u-active-grey-75 u-button-style u-grey-75 u-hover-grey-70 u-radius-10 u-text-active-white u-text-grey-30 u-text-hover-white u-accordion-link-2" id="link-accordion-4c47" aria-controls="accordion-4c47" aria-selected="false">
<span class="u-accordion-link-text">Artado Bangs shortcut</span><span class="u-accordion-link-icon u-icon u-text-grey-40 u-icon-2"><svg class="u-svg-link" preserveAspectRatio="xMidYMin slice" viewBox="0 0 42 42" style=""><use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#svg-9d52"></use></svg><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" xml:space="preserve" class="u-svg-content" viewBox="0 0 42 42" x="0px" y="0px" id="svg-9d52" style="enable-background:new 0 0 42 42;"><polygon points="42,20 22,20 22,0 20,0 20,20 0,20 0,22 20,22 20,42 22,42 22,22 42,22 "></polygon></svg></span>
</a>
<div class="u-accordion-pane u-container-style u-grey-80 u-accordion-pane-2" id="accordion-4c47" aria-labelledby="link-accordion-4c47">
<div class="u-container-layout u-valign-top u-container-layout-2">
<div class="custom-expanded u-clearfix u-custom-html u-custom-html-2">
<p>
<h1 id="artado-search-bangs">Artado Search Bangs</h1>
<p>Welcome to the Artado Search User Guide! This documentation is designed to help you make the most out of Artado Search by guiding you through its various features and functionalities.</p>
<h2 id="table-of-contents">Table of Contents</h2>
<ol>
<li><a href="#how-to-use-bangs">How to use bangs</a></li>
<li><a href="#list-of-supported-bangs">List of supported artado bangs</a><ul>
<li><a href="#conclusion">Conclusion</a></ul>
</ul>
</li>
</ol>
<hr>
</p>
<h1 id="artado-search-bangs-a-quick-guide">Artado Search Bangs: A Quick Guide</h1>
<p>Artado Search supports a powerful feature called "Bangs" that allows you to quickly search specific websites directly from the search bar. By typing a bang keyword followed by your search query, you can bypass Artado's search results and go directly to the search results of the targeted website.</p>
<h2 id="how-to-use-bangs">How to Use Bangs</h2>
<p>Using bangs in Artado is simple. Just type the bang keyword followed by your search term in the Artado search bar and press <strong>Enter</strong>. For example:
</p>
<pre> <code>
<span class="hljs-addition">!g artificial intelligence</span>
</code>
</pre>
<p>This will take you directly to Google's search results for "artificial intelligence."</p>
<h2 id="list-of-supported-bangs">List of Supported Bangs</h2>
<p>Here’s a comprehensive list of the supported bangs in Artado Search and what they do:</p>
<ul>
<li>
<p>
<strong>
<code>!g</code>
</strong> - <strong>Google</strong>: Search directly on Google.
</p>
<ul>
<li>Example: <code>!g climate change</code>
</li>
</ul>
</li>
<li>
<p>
<strong>
<code>!w</code>
</strong> - <strong>Wikipedia</strong>: Look up information on Wikipedia.
</p>
<ul>
<li>Example: <code>!w OpenAI</code>
</li>
</ul>
</li>
<li>
<p>
<strong>
<code>!yt</code>
</strong> - <strong>YouTube</strong>: Find videos on YouTube.
</p>
<ul>
<li>Example: <code>!yt machine learning tutorial</code>
</li>
</ul>
</li>
<li>
<p>
<strong>
<code>!a</code>
</strong> - <strong>Amazon</strong>: Shop on Amazon.
</p>
<ul>
<li>Example: <code>!a wireless headphones</code>
</li>
</ul>
</li>
<li>
<p>
<strong>
<code>!tw</code>
</strong> - <strong>Twitter</strong>: Search tweets on Twitter.
</p>
<ul>
<li>Example: <code>!tw OpenAI</code>
</li>
</ul>
</li>
<li>
<p>
<strong>
<code>!fb</code>
</strong> - <strong>Facebook</strong>: Search on Facebook.
</p>
<ul>
<li>Example: <code>!fb artado search</code>
</li>
</ul>
</li>
<li>
<p>
<strong>
<code>!r</code>
</strong> - <strong>Reddit</strong>: Browse Reddit threads.
</p>
<ul>
<li>Example: <code>!r web development</code>
</li>
</ul>
</li>
<li>
<p>
<strong>
<code>!gh</code>
</strong> - <strong>GitHub</strong>: Find repositories on GitHub.
</p>
<ul>
<li>Example: <code>!gh artado search</code>
</li>
</ul>
</li>
<li>
<p>
<strong>
<code>!ama</code>
</strong> - <strong>AMA (Ask Me Anything)</strong>: Find AMA threads.
</p>
<ul>
<li>Example: <code>!ama space exploration</code>
</li>
</ul>
</li>
<li>
<p>
<strong>
<code>!d</code>
</strong> - <strong>DuckDuckGo</strong>: Search on DuckDuckGo.
</p>
<ul>
<li>Example: <code>!d privacy tools</code>
</li>
</ul>
</li>
<li>
<p>
<strong>
<code>!imdb</code>
</strong> - <strong>IMDb</strong>: Look up movies and TV shows on IMDb.
</p>
<ul>
<li>Example: <code>!imdb Inception</code>
</li>
</ul>
</li>
<li>
<p>
<strong>
<code>!ebay</code>
</strong> - <strong>eBay</strong>: Shop on eBay.
</p>
<ul>
<li>Example: <code>!ebay vintage watches</code>
</li>
</ul>
</li>
<li>
<p>
<strong>
<code>!netflix</code>
</strong> - <strong>Netflix</strong>: Search movies and shows on Netflix.
</p>
<ul>
<li>Example: <code>!netflix science fiction</code>
</li>
</ul>
</li>
<li>
<p>
<strong>
<code>!maps</code>
</strong> - <strong>Google Maps</strong>: Search locations on Google Maps.
</p>
<ul>
<li>Example: <code>!maps New York City</code>
</li>
</ul>
</li>
<li>
<p>
<strong>
<code>!p</code>
</strong> - <strong>Pinterest</strong>: Find inspiration on Pinterest.
</p>
<ul>
<li>Example: <code>!p home decor ideas</code>
</li>
</ul>
</li>
<li>
<p>
<strong>
<code>!so</code>
</strong> - <strong>Stack Overflow</strong>: Search coding questions on Stack Overflow.
</p>
<ul>
<li>Example: <code>!so JavaScript fetch API</code>
</li>
</ul>
</li>
<li>
<p>
<strong>
<code>!gmail</code>
</strong> - <strong>Gmail</strong>: Search emails on Gmail.
</p>
<ul>
<li>Example: <code>!gmail job application</code>
</li>
</ul>
</li>
<li>
<p>
<strong>
<code>!gnews</code>
</strong> - <strong>Google News</strong>: Find news articles on Google News.
</p>
<ul>
<li>Example: <code>!gnews technology trends</code>
</li>
</ul>
</li>
<li>
<p>
<strong>
<code>!wp</code>
</strong> - <strong>WhatsApp</strong>: Search chats on WhatsApp Web.
</p>
<ul>
<li>Example: <code>!wp meetup</code>
</li>
</ul>
</li>
<li>
<p>
<strong>
<code>!img</code>
</strong> - <strong>Google Images</strong>: Find images on Google.
</p>
<ul>
<li>Example: <code>!img sunsets</code>
</li>
</ul>
</li>
<li>
<p>
<strong>
<code>!t</code>
</strong> - <strong>Tumblr</strong>: Search posts on Tumblr.
</p>
<ul>
<li>Example: <code>!t art illustration</code>
</li>
</ul>
</li>
<li>
<p>
<strong>
<code>!dic</code>
</strong> - <strong>Dictionary.com</strong>: Look up word definitions.
</p>
<ul>
<li>Example: <code>!dic plethora</code>
</li>
</ul>
</li>
<li>
<p>
<strong>
<code>!th</code>
</strong> - <strong>TheHackerNews</strong>: Find articles on TheHackerNews.
</p>
<ul>
<li>Example: <code>!th cybersecurity</code>
</li>
</ul>
</li>
<li>
<p>
<strong>
<code>!net</code>
</strong> - <strong>Netflix</strong>: Another way to search Netflix.
</p>
<ul>
<li>Example: <code>!net comedy movies</code>
</li>
</ul>
</li>
<li>
<p>
<strong>
<code>!y</code>
</strong> - <strong>Yahoo</strong>: Search on Yahoo.
</p>
<ul>
<li>Example: <code>!y financial news</code>
</li>
</ul>
</li>
<li>
<p>
<strong>
<code>!q</code>
</strong> - <strong>Quora</strong>: Find answers on Quora.
</p>
<ul>
<li>Example: <code>!q startup advice</code>
</li>
</ul>
</li>
<li>
<p>
<strong>
<code>!m</code>
</strong> - <strong>Medium</strong>: Search articles on Medium.
</p>
<ul>
<li>Example: <code>!m productivity hacks</code>
</li>
</ul>
</li>
<li>
<p>
<strong>
<code>!eb</code>
</strong> - <strong>Etsy</strong>: Shop handmade and vintage items on Etsy.
</p>
<ul>
<li>Example: <code>!eb handmade jewelry</code>
</li>
</ul>
</li>
<li>
<p>
<strong>
<code>!hr</code>
</strong> - <strong>HackerRank</strong>: Practice coding on HackerRank.
</p>
<ul>
<li>Example: <code>!hr algorithms</code>
</li>
</ul>
</li>
<li>
<p>
<strong>
<code>!cra</code>
</strong> - <strong>Craigslist</strong>: Find listings on Craigslist.
</p>
<ul>
<li>Example: <code>!cra used cars</code>
</li>
</ul>
</li>
<li>
<p>
<strong>
<code>!o</code>
</strong> - <strong>Outlook</strong>: Search emails on Outlook.
</p>
<ul>
<li>Example: <code>!o project meeting</code>
</li>
</ul>
</li>
<li>
<p>
<strong>
<code>!drib</code>
</strong> - <strong>Dribbble</strong>: Search designs on Dribbble.
</p>
<ul>
<li>Example: <code>!drib UI inspiration</code>
</li>
</ul>
</li>
<li>
<p>
<strong>
<code>!it</code>
</strong> - <strong>Instagram</strong>: Search posts on Instagram.
</p>
<ul>
<li>Example: <code>!it travel photography</code>
</li>
</ul>
</li>
<li>
<p>
<strong>
<code>!gcal</code>
</strong> - <strong>Google Calendar</strong>: Search events on Google Calendar.
</p>
<ul>
<li>Example: <code>!gcal team meeting</code>
</li>
</ul>
</li>
<li>
<p>
<strong>
<code>!sc</code>
</strong> - <strong>SoundCloud</strong>: Find music on SoundCloud.
</p>
<ul>
<li>Example: <code>!sc lo-fi beats</code>
</li>
</ul>
</li>
<li>
<p>
<strong>
<code>!wol</code>
</strong> - <strong>Wolfram Alpha</strong>: Search computational knowledge on Wolfram Alpha.
</p>
<ul>
<li>Example: <code>!wol prime numbers</code>
</li>
</ul>
</li>
<li>
<p>
<strong>
<code>!mz</code>
</strong> - <strong>Moz</strong>: Search SEO tools and articles on Moz.
</p>
<ul>
<li>Example: <code>!mz keyword research</code>
</li>
</ul>
</li>
<li>
<p>
<strong>
<code>!npr</code>
</strong> - <strong>NPR</strong>: Search news and podcasts on NPR.
</p>
<ul>
<li>Example: <code>!npr daily news podcast</code>
</li>
</ul>
</li>
<li>
<p>
<strong>
<code>!ar</code>
</strong> - <strong>Airbnb</strong>: Search stays on Airbnb.
</p>
<ul>
<li>Example: <code>!ar Paris apartment</code>
</li>
</ul>
</li>
<li>
<p>
<strong>
<code>!cnn</code>
</strong> - <strong>CNN</strong>: Search news articles on CNN.
</p>
<ul>
<li>Example: <code>!cnn election coverage</code>
</li>
</ul>
</li>
<li>
<p>
<strong>
<code>!bbc</code>
</strong> - <strong>BBC</strong>: Find news on BBC.
</p>
<ul>
<li>Example: <code>!bbc world news</code>
</li>
</ul>
</li>
<li>
<p>
<strong>
<code>!v</code>
</strong> - <strong>Vimeo</strong>: Find videos on Vimeo.
</p>
<ul>
<li>Example: <code>!v short films</code>
</li>
</ul>
</li>
<li>
<p>
<strong>
<code>!tpb</code>
</strong> - <strong>The Pirate Bay</strong>: Search torrents on The Pirate Bay.
</p>
<ul>
<li>Example: <code>!tpb open-source software</code>
</li>
</ul>
</li>
<li>
<p>
<strong>
<code>!gdoc</code>
</strong> - <strong>Google Docs</strong>: Search documents on Google Docs.
</p>
<ul>
<li>Example: <code>!gdoc project report</code>
</li>
</ul>
</li>
<li>
<p>
<strong>
<code>!wo</code>
</strong> - <strong>WordPress</strong>: Search blogs on WordPress.
</p>
<ul>
<li>Example: <code>!wo tech blog</code>
</li>
</ul>
</li>
<li>
<p>
<strong>
<code>!rt</code>
</strong> - <strong>Rotten Tomatoes</strong>: Search movie ratings on Rotten Tomatoes.
</p>
<ul>
<li>Example: <code>!rt action movies</code>
</li>
</ul>
</li>
<li>
<p>
<strong>
<code>!ars</code>
</strong> - <strong>Ars Technica</strong>: Find articles on Ars Technica.
</p>
<ul>
<li>Example: <code>!ars tech news</code>
</li>
</ul>
</li>
<li>
<p>
<strong>
<code>!ln</code>
</strong> - <strong>LinkedIn</strong>: Search profiles and jobs on LinkedIn.
</p>
<ul>
<li>Example: <code>!ln software engineer</code>
</li>
</ul>
</li>
<li>
<p>
<strong>
<code>!sl</code>
</strong> - <strong>SlideShare</strong>: Search presentations on SlideShare.
</p>
<ul>
<li>Example: <code>!sl digital marketing</code>
</li>
</ul>
</li>
<li>
<p>
<strong>
<code>!hn</code>
</strong> - <strong>Hacker News</strong>: Find tech news on Hacker News.
</p>
<ul>
<li>Example: <code>!hn programming languages</code>
</li>
</ul>
</li>
<li>
<p>
<strong>
<code>!me</code>
</strong> - <strong>Meetup</strong>: Find events on Meetup.
</p>
<ul>
<li>Example: <code>!me photography group</code>
</li>
</ul>
</li>
<li>
<p>
<strong>
<code>!wik</code>
</strong> - <strong>Wikipedia</strong>: Another way to search Wikipedia.
</p>
<ul>
<li>Example: <code>!wik renewable energy</code>
</li>
</ul>
</li>
<li>
<p>
<strong>
<code>!ea</code>
</strong> - <strong>Etsy</strong>: Another way to shop on Etsy.
</p>
<ul>
<li>Example: <code>!ea custom gifts</code>
</li>
</ul>
</li>
<li>
<p>
<strong>
<code>!b</code>
</strong> - <strong>Bing</strong>: Search on Bing.
</p>
<ul>
<li>Example: <code>!b latest technology</code>
</li>
</ul>
</li>
<li>
<p>
<strong>
<code>!pay</code>
</strong> - <strong>PayPal</strong>: Search transactions on PayPal.
</p>
<ul>
<li>Example: <code>!pay recent payments</code>
</li>
</ul>
</li>
<li>
<p>
<strong>
<code>!dp</code>
</strong> - <strong>Dropbox</strong>: Search files on Dropbox.
</p>
<ul>
<li>Example: <code>!dp client documents</code>
</li>
</ul>
</li>
<li>