forked from IsThereAnyDeal/AugmentedSteam
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoptions.html
1093 lines (1014 loc) · 69.2 KB
/
options.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 xmlns="http://www.w3.org/1999/xhtml">
<head>
<link href="css/enhancedsteam.css" rel="stylesheet" type="text/css">
<link href="css/options.css" rel="stylesheet" type="text/css">
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
<title>Options - Augmented Steam</title>
<base target="_blank">
<template id='add_custom_profile_link'>
<div class="custom-link option js-custom-link">
<input type="checkbox" name="profile_custom_enabled" />
<div>
<div>
<label class="custom-link__label" data-locale-text="options.name">Name</label>
<input class="custom-link__input" type="text" name="profile_custom_name" maxlength="30">
</div>
<div>
<label class="custom-link__label" >URL</label>
<input class="custom-link__input" type="text" name="profile_custom_url">
</div>
<div>
<label class="custom-link__label" data-locale-text="options.icon">Icon</label>
<input class="custom-link__input" type="text" name="profile_custom_icon">
</div>
</div>
<button type="button" name="profile_custom_remove" class="custom-link__close js-custom-link-remove"></button>
</div>
</template>
</head>
<body>
<div id="header">
<img src="img/logo.png">
</div>
<div id="page">
<div id="side_bar">
<div class="tab_row selected" data-block-sel="#maincontent_general">
<div class="category sidebar_entry">
<div data-locale-text="options.general">General</div>
</div>
</div>
<div class="tab_row" data-block-sel="#maincontent_store">
<div class="category sidebar_entry">
<div data-locale-text="store">Store</div>
</div>
</div>
<div class="tab_row" data-block-sel="#maincontent_price">
<div class="category sidebar_entry">
<div data-locale-text="price">Price</div>
</div>
</div>
<div class="tab_row" data-block-sel="#maincontent_community">
<div class="category sidebar_entry">
<div data-locale-text="community">Community</div>
</div>
</div>
<div class="tab_row" data-block-sel="#maincontent_news">
<div class="category sidebar_entry">
<div data-locale-text="news">News</div>
</div>
</div>
<div class="tab_row" data-block-sel="#maincontent_about">
<div class="category sidebar_entry">
<div data-locale-text="about">About</div>
</div>
</div>
<div class="tab_row" data-block-sel="#maincontent_credits">
<div class="category sidebar_entry">
<div data-locale-text="credits">Credits</div>
</div>
</div>
</div>
<div id="contentwrapper">
<div class="content selected">
<!-- General -->
<div id="maincontent_general">
<h1 data-locale-text="options.general">General</h1>
<div class="settings">
<div id="language_section" class="content_section">
<h2 data-locale-text="language">Language</h2>
<div class="option">
<input type="checkbox" id="showlanguagewarning" data-setting="showlanguagewarning">
<label for="showlanguagewarning" data-locale-text="options.show_languagewarning">Show warning if browsing in a language other than</label>
<select id="warning_language" data-setting="showlanguagewarninglanguage">
<option value="english">English</option>
<option value="bulgarian">български</option>
<option value="czech">čeština</option>
<option value="danish">Dansk</option>
<option value="dutch">Nederlands</option>
<option value="finnish">Suomi</option>
<option value="french">Français</option>
<option value="greek">Ελληνικά</option>
<option value="german">Deutsch</option>
<option value="hungarian">Magyar</option>
<option value="italian">Italiano</option>
<option value="japanese">日本語</option>
<option value="koreana">한국어</option>
<option value="norwegian">Norsk</option>
<option value="polish">Polski</option>
<option value="portuguese">Português</option>
<option value="brazilian">Português-Brasil</option>
<option value="russian">Русский</option>
<option value="romanian">Română</option>
<option value="schinese">汉语</option>
<option value="tchinese">漢語</option>
<option value="spanish">Español</option>
<option value="latam">Español Latinoamericano</option>
<option value="swedish">Svenska</option>
<option value="thai">ไทย</option>
<option value="turkish">Türkçe</option>
<option value="ukrainian">Українська</option>
<option value="vietnamese">Tiếng Việt</option>
</select>
</div>
</div>
<div id="general_general_section" class="content_section">
<h2 data-locale-text="options.general">General</h2>
<div class="option">
<input type="checkbox" id="show_progressbar" data-setting="show_progressbar">
<label for="show_progressbar" data-locale-text="show_progressbar">Show progress and status bar of this extension</label>
</div>
<div class="option">
<input type="checkbox" id="version_show" data-setting="version_show">
<label for="version_show" data-locale-text="options.version_show">Show change log when this extension updates</label>
</div>
<div class="option">
<input type="checkbox" id="replaceaccountname" data-setting="replaceaccountname">
<label for="replaceaccountname" data-locale-text="options.replace_account_name">Replace account name with community name</label>
</div>
<div class="option">
<input type="checkbox" id="showfakeccwarning" data-setting="showfakeccwarning">
<label for="showfakeccwarning" data-locale-text="options.show_regionwarning">Show warning if browsing in non-account region</label>
</div>
<div class="option">
<input type="checkbox" id="show_backtotop" data-setting="show_backtotop">
<label for="show_backtotop" data-locale-text="options.show_backtotop">Show back to top button on long pages</label>
</div>
</div>
<div id="context_menu_section" class="content_section">
<h2 data-locale-text="options.context_menu">Context Menu</h2>
<div class="option">
<input type="checkbox" id="context_steam_store" data-setting="context_steam_store">
<label for="context_steam_store" data-locale-text="options.context_steam_store">Search Steam Store for '...'</label>
</div>
<div class="option">
<input type="checkbox" id="context_steam_market" data-setting="context_steam_market">
<label for="context_steam_market" data-locale-text="options.context_steam_market">Search Steam Market for '...'</label>
</div>
<div class="option">
<input type="checkbox" id="context_itad" data-setting="context_itad">
<label for="context_itad" data-locale-text="options.context_itad">Search IsThereAnyDeal for '...'</label>
</div>
<div class="option">
<input type="checkbox" id="context_bartervg" data-setting="context_bartervg">
<label for="context_bartervg" data-locale-text="options.context_bartervg">Search Barter.vg for '...'</label>
</div>
<div class="option">
<input type="checkbox" id="context_steamdb" data-setting="context_steamdb">
<label for="context_steamdb" data-locale-text="options.context_steamdb">Search SteamDB for '...'</label>
</div>
<div class="option">
<input type="checkbox" id="context_steamdb_instant" data-setting="context_steamdb_instant">
<label for="context_steamdb_instant" data-locale-text="options.context_steamdb_instant">Instant Search SteamDB for '...'</label>
</div>
<div class="option">
<input type="checkbox" id="context_steam_keys" data-setting="context_steam_keys">
<label for="context_steam_keys" data-locale-text="options.context_steam_keys">Activate steam keys within selection</label>
</div>
</div>
</div>
</div>
<!-- Store -->
<div id="maincontent_store">
<h1 data-locale-text="store">Store</h1>
<div class="settings">
<div id="itad_section" class="content_section">
<h2>IsThereAnyDeal</h2>
<div class="option">
<span data-locale-text="status">Status:</span>
<span id="itad_status"></span>
<button id="itad_action"></button>
</div>
<div style="max-width: 650px">
<div style="font-size:0.92em;background-color:#1a1c21;padding: 15px">
<p style="margin: 0 0 0.5em 0" data-locale-text="itad.info.itad-steam"></p>
<p style="margin: 0" data-locale-text="itad.info.steam-itad"></p>
</div>
</div>
<label data-locale-text="itad.import">Periodically import:</label>
<div class="indented option">
<input type="checkbox" id="itad_import_library" data-setting="itad_import_library">
<label for="itad_import_library" data-locale-text="library_menu">Library</label>
</div>
<div class="indented option">
<input type="checkbox" id="itad_import_wishlist" data-setting="itad_import_wishlist">
<label for="itad_import_wishlist" data-locale-text="wishlist">Wishlist</label>
</div>
<div class="option">
<input type="checkbox" id="add_to_waitlist" data-setting="add_to_waitlist">
<label for="add_to_waitlist" data-locale-text="options.add_to_waitlist">Show "Add to Waitlist" dropdown on app pages</label>
</div>
</div>
<div id="highlight_section" class="content_section">
<h2 data-locale-text="highlight">Highlight</h2>
<div class="option">
<input type="checkbox" id="highlight_owned" data-setting="highlight_owned">
<label for="highlight_owned" data-locale-text="options.owned">Items you own</label>
<div class="buttons">
<input type="color" id="highlight_owned_color" data-setting="highlight_owned_color">
<button id="highlight_owned_default" data-locale-text="theworddefault">Default</button>
</div>
</div>
<div class="option">
<input type="checkbox" id="highlight_wishlist" data-setting="highlight_wishlist">
<label for="highlight_wishlist" data-locale-text="options.wishlist">Items on your wishlist</label>
<div class="buttons">
<input type="color" id="highlight_wishlist_color" data-setting="highlight_wishlist_color">
<button id="highlight_wishlist_default" data-locale-text="theworddefault">Default</button>
</div>
</div>
<div class="option">
<input type="checkbox" id="highlight_coupon" data-setting="highlight_coupon">
<label for="highlight_coupon" data-locale-text="options.coupon">Items with coupons</label>
<div class="buttons">
<input type="color" id="highlight_coupon_color" data-setting="highlight_coupon_color">
<button id="highlight_coupon_default" data-locale-text="theworddefault">Default</button>
</div>
</div>
<div class="option">
<input type="checkbox" id="highlight_inv_gift" data-setting="highlight_inv_gift">
<label for="highlight_inv_gift" data-locale-text="options.gift">Items stored as gift</label>
<div class="buttons">
<input type="color" id="highlight_inv_gift_color" data-setting="highlight_inv_gift_color">
<button id="highlight_inv_gift_default" data-locale-text="theworddefault">Default</button>
</div>
</div>
<div class="option">
<input type="checkbox" id="highlight_inv_guestpass" data-setting="highlight_inv_guestpass">
<label for="highlight_inv_guestpass" data-locale-text="options.guest">Items you have a guest pass for</label>
<div class="buttons">
<input type="color" id="highlight_inv_guestpass_color" data-setting="highlight_inv_guestpass_color">
<button id="highlight_inv_guestpass_default" data-locale-text="theworddefault">Default</button>
</div>
</div>
<div class="option">
<input type="checkbox" id="highlight_notinterested" data-setting="highlight_notinterested">
<label for="highlight_notinterested" data-locale-text="notinterested">Items marked not interested</label>
<div class="buttons">
<input type="color" id="highlight_notinterested_color" data-setting="highlight_notinterested_color">
<button id="highlight_notinterested_default" data-locale-text="theworddefault">Default</button>
</div>
</div>
<div class="option">
<input type="checkbox" id="highlight_collection" data-setting="highlight_collection">
<label for="highlight_collection" data-locale-text="options.collection">Items in your ITAD Collection</label>
<div class="buttons">
<input type="color" id="highlight_collection_color" data-setting="highlight_collection_color">
<button id="highlight_collection_default" data-locale-text="theworddefault">Default</button>
</div>
</div>
<div class="option">
<input type="checkbox" id="highlight_waitlist" data-setting="highlight_waitlist">
<label for="highlight_waitlist" data-locale-text="options.waitlist">Items in your ITAD Waitlist</label>
<div class="buttons">
<input type="color" id="highlight_waitlist_color" data-setting="highlight_waitlist_color">
<button id="highlight_waitlist_default" data-locale-text="theworddefault">Default</button>
</div>
</div>
<div class="option distance_top">
<input type="checkbox" id="highlight_excludef2p" data-setting="highlight_excludef2p">
<label for="highlight_excludef2p" data-locale-text="options.excludef2p">Exclude free to play games from highlighting</label>
</div>
</div>
<div id="tag_section" class="content_section">
<h2 data-locale-text="options.tag">Tag</h2>
<div class="option">
<input type="checkbox" id="tag_owned" data-setting="tag_owned">
<label for="tag_owned" data-locale-text="options.owned">Items you own</label>
<div class="buttons">
<input type="color" id="tag_owned_color" data-setting="tag_owned_color">
<button id="tag_owned_default" data-locale-text="theworddefault">Default</button>
</div>
</div>
<div class="option">
<input type="checkbox" id="tag_wishlist" data-setting="tag_wishlist">
<label for="tag_wishlist" data-locale-text="options.wishlist">Items on your wishlist</label>
<div class="buttons">
<input type="color" id="tag_wishlist_color" data-setting="tag_wishlist_color">
<button id="tag_wishlist_default" data-locale-text="theworddefault">Default</button>
</div>
</div>
<div class="option">
<input type="checkbox" id="tag_coupon" data-setting="tag_coupon">
<label for="tag_coupon" data-locale-text="options.coupon">Items with coupons</label>
<div class="buttons">
<input type="color" id="tag_coupon_color" data-setting="tag_coupon_color">
<button id="tag_coupon_default" data-locale-text="theworddefault">Default</button>
</div>
</div>
<div class="option">
<input type="checkbox" id="tag_inv_gift" data-setting="tag_inv_gift">
<label for="tag_inv_gift" data-locale-text="options.gift">Items stored as gift</label>
<div class="buttons">
<input type="color" id="tag_inv_gift_color" data-setting="tag_inv_gift_color">
<button id="tag_inv_gift_default" data-locale-text="theworddefault">Default</button>
</div>
</div>
<div class="option">
<input type="checkbox" id="tag_inv_guestpass" data-setting="tag_inv_guestpass">
<label for="tag_inv_guestpass" data-locale-text="options.guest">Items you have a
guest pass for</label>
<div class="buttons">
<input type="color" id="tag_inv_guestpass_color" data-setting="tag_inv_guestpass_color">
<button id="tag_inv_guestpass_default" data-locale-text="theworddefault">Default</button>
</div>
</div>
<div class="option">
<input type="checkbox" id="tag_notinterested" data-setting="tag_notinterested">
<label for="tag_notinterested" data-locale-text="notinterested">Items marked not interested</label>
<div class="buttons">
<input type="color" id="tag_notinterested_color" data-setting="tag_notinterested_color">
<button id="tag_notinterested_default" data-locale-text="theworddefault">Default</button>
</div>
</div>
<div class="option distance_top">
<input type="checkbox" id="tag_short" data-setting="tag_short">
<label for="tag_short" data-locale-text="tag_short">Use short tags to save space</label>
</div>
</div>
<div id="hide_section" class="content_section">
<h2 data-locale-text="hide">Hide</h2>
<div class="option">
<input type="checkbox" id="hide_owned" data-setting="hide_owned">
<label for="hide_owned" data-locale-text="options.hide_owned">Items you own in search results</label>
</div>
<div class="option">
<input type="checkbox" id="hide_ignored" data-setting="hide_ignored">
<label for="hide_ignored" data-locale-text="options.hide_ignored">Items you ignored in search results</label>
</div>
<div class="option">
<input type="checkbox" id="hidetmsymbols" data-setting="hidetmsymbols">
<label for="hidetmsymbols" data-locale-text="options.hidetmsymbols">Trademark and Copyright symbols in game titles</label>
</div>
<div class="option">
<input type="checkbox" id="hideaboutlinks" data-setting="hideaboutlinks">
<label for="hideaboutlinks" data-locale-text="options.hide_about_links">Hide "About" links</label>
</div>
<div class="option">
<label for="installsteam" data-locale-text="options.install_steam_button">"Install Steam" button</label>
<select id="installsteam" data-setting="installsteam">
<option value="show" data-locale-text="show">Show</option>
<option value="hide" data-locale-text="hide">Hide</option>
<option value="replace" data-locale-text="options.replace_view_client">Replace with "View in Client"</option>
</select>
</div>
</div>
<div id="homepage_section" class="content_section">
<h2 data-locale-text="options.homepage">Homepage</h2>
<div class="option">
<label data-locale-text="options.homepage_default_tab">Default homepage tab</label>
<select data-setting="homepage_tab_selection">
<option value="remember" data-locale-text="options.homepage_default_tab_remember">Remember Previous</option>
<option value="tab_newreleases_content_trigger" data-locale-text="options.homepage_default_tab_newreleases">Popular New Releases</option>
<!-- <option value="es_allreleases" data-locale-text="options.homepage_default_tab_allreleases">All New Releases</option> -->
<option value="tab_topsellers_content_trigger" data-locale-text="options.homepage_default_tab_topsellers">Top Sellers</option>
<option value="tab_upcoming_content_trigger" data-locale-text="options.homepage_default_tab_upcoming">Upcoming</option>
<option value="tab_specials_content_trigger" data-locale-text="options.homepage_default_tab_specials">Specials</option>
<!-- <option value="es_popular" data-locale-text="popular">Popular</option> -->
</select>
</div>
</div>
<div id="store_general_section" class="content_section">
<h2 data-locale-text="options.general">General</h2>
<div class="option">
<input type="checkbox" id="showemptywishlist" data-setting="showemptywishlist">
<label for="showemptywishlist" data-locale-text="options.show_empty_wishlist">Show "Empty Wishlist" button</label>
</div>
<div class="option">
<input type="checkbox" id="showwishliststats" data-setting="showwishliststats">
<label for="showwishliststats" data-locale-text="options.show_wishlist_stats">Show wishlist stats on wishlist</label>
</div>
<div class="option">
<input type="checkbox" id="showusernotes" data-setting="showusernotes">
<label for="showusernotes" data-locale-text="options.show_user_notes">Show user notes on wishlist and app pages</label>
</div>
<div class="option">
<input type="checkbox" id="send_age_info" data-setting="send_age_info">
<label for="send_age_info" data-locale-text="options.send_age_info">Automatically send age verification when requested</label>
</div>
<div class="option">
<input type="checkbox" id="mp4video" data-setting="mp4video">
<label for="mp4video" data-locale-text="options.mp4video">Force app store videos to be in MP4 format</label>
</div>
<div class="option">
<input type="checkbox" id="contscroll" data-setting="contscroll">
<label for="contscroll" data-locale-text="options.contscroll">Enable continuous scrolling of search results</label>
</div>
<div class="option">
<input type="checkbox" id="horizontalscrolling" data-setting="horizontalscrolling">
<label for="horizontalscrolling" data-locale-text="options.horizontalscrolling">Enable horizontal scrolling on app pages with scroll wheel</label>
</div>
<div class="option">
<input type="checkbox" id="showsupportinfo" data-setting="showsupportinfo">
<label for="showsupportinfo" data-locale-text="options.supportinfo">Show support info on store pages</label>
</div>
<div class="option">
<input type="checkbox" id="showdrm" data-setting="showdrm">
<label for="showdrm" data-locale-text="options.drm">Show 3rd party DRM warnings</label>
</div>
<div class="option">
<input type="checkbox" id="openinnewtab" data-setting="openinnewtab">
<label for="openinnewtab" data-locale-text="options.openinnewtab">Open external links in a new tab</label>
</div>
<div class="option">
<input type="checkbox" id="showviewinlibrary" data-setting="showviewinlibrary">
<label for="showviewinlibrary" data-locale-text="options.show_view_in_library">Show "View in library" button for owned games</label>
</div>
<div class="option">
<input type="checkbox" id="show_package_info" data-setting="show_package_info">
<label for="show_package_info" data-locale-text="options.show_package_info">Show package info for all apps</label>
</div>
<div class="option">
<input type="checkbox" id="show_early_access" data-setting="show_early_access">
<label for="show_early_access" data-locale-text="options.show_early_access">Show Early Access image banners</label>
</div>
<div class="option">
<input type="checkbox" id="showachinstore" data-setting="showachinstore">
<label for="showachinstore" data-locale-text="achievements.option">Show achievement completion on store pages</label>
</div>
<div class="option">
<input type="checkbox" id="purchase_dates" data-setting="purchase_dates">
<label for="purchase_dates" data-locale-text="options.purchase_dates">Show apps purchase date on store pages</label>
</div>
<div class="option">
<input type="checkbox" id="show_badge_progress" data-setting="show_badge_progress">
<label for="show_badge_progress" data-locale-text="options.show_badge_progress">Show apps badge progress on store pages</label>
</div>
<div class="option">
<input type="checkbox" id="show_coupon" data-setting="show_coupon">
<label for="show_coupon" data-locale-text="options.show_coupon">Show applicable coupon on store pages</label>
</div>
<div class="option">
<input type="checkbox" id="show_alternative_linux_icon" data-setting="show_alternative_linux_icon">
<label for="show_alternative_linux_icon" data-locale-text="options.show_alternative_linux_icon">Show alternative Linux icon</label>
</div>
<div class="option">
<input type="checkbox" id="skip_got_steam" data-setting="skip_got_steam">
<label for="skip_got_steam" data-locale-text="options.skip_got_steam">Skip the 'Got Steam?' window</label>
</div>
</div>
<div id="store_thirdparty_section" class="content_section">
<h2 data-locale-text="options.store_general_thirdparty">Options for information from 3rd party sites</h2>
<!-- removed, we don't have api
<div>
<input type="checkbox" id="show_keylol_links" data-setting="show_keylol_links">
<label for="show_keylol_links">Show Keylol links on app pages</label>
</div>
-->
<div class="option">
<input type="checkbox" id="showmcus" data-setting="showmcus">
<label for="showmcus" data-locale-text="options.metacritic">Show Metacritic user scores</label>
</div>
<div class="option">
<input type="checkbox" id="showoc" data-setting="showoc">
<label for="showoc" data-locale-text="options.opencritic">Show Opencritic.com information</label>
</div>
<div class="option">
<input type="checkbox" id="showhltb" data-setting="showhltb">
<label for="showhltb" data-locale-text="options.hltb">Show HowLongToBeat.com information</label>
</div>
<div class="option">
<input type="checkbox" id="showitadlinks" data-setting="showitadlinks">
<label for="showitadlinks" data-locale-text="options.itadlinks">Show IsThereAnyDeal links</label>
</div>
<div class="option">
<input type="checkbox" id="showsteamdb" data-setting="showsteamdb">
<label for="showsteamdb" data-locale-text="options.steamdb">Show SteamDB links</label>
</div>
<div class="option">
<input type="checkbox" id="showbartervg" data-setting="showbartervg">
<label for="showbartervg" data-locale-text="options.showbartervg">Show Barter.vg links</label>
</div>
<div class="option">
<input type="checkbox" id="showastatslink" data-setting="showastatslink">
<label for="showastatslink" data-locale-text="options.show_astatslink">Show AStats link on app pages</label>
</div>
<div class="option">
<input type="checkbox" id="showyoutubegameplay" data-setting="showyoutubegameplay">
<label for="showyoutubegameplay" data-locale-text="options.show_youtubegameplay">Show YouTube gameplay videos on app pages</label>
</div>
<div class="option">
<input type="checkbox" id="showyoutubereviews" data-setting="showyoutubereviews">
<label for="showyoutubereviews" data-locale-text="options.show_youtubereviews">Show YouTube review videos on app pages</label>
</div>
<div class="option">
<input type="checkbox" id="showpcgw" data-setting="showpcgw">
<label for="showpcgw" data-locale-text="options.pcgw">Show PCGamingWiki links</label>
</div>
<div class="option">
<input type="checkbox" id="showcompletionistme" data-setting="showcompletionistme">
<label for="showcompletionistme" data-locale-text="options.completionistme">Show Completionist.me links</label>
</div>
<div class="option">
<input type="checkbox" id="showprotondb" data-setting="showprotondb">
<label for="showprotondb" data-locale-text="options.protondb">Show ProtonDB links</label>
</div>
<div class="option">
<input type="checkbox" id="showwsgf" data-setting="showwsgf">
<label for="showwsgf" data-locale-text="options.wsgf">Show WSGF (Widescreen) info</label>
</div>
<div class="option">
<input type="checkbox" id="showsteamcardexchange" data-setting="showsteamcardexchange">
<label for="showsteamcardexchange" data-locale-text="options.store_steamcards">Show SteamCardExchange links on store pages</label>
</div>
<div class="option">
<input type="checkbox" id="show_steamchart_info" data-setting="show_steamchart_info">
<label for="show_steamchart_info" data-locale-text="options.show_steamchart_info">Show SteamCharts.com info</label>
</div>
<div class="option">
<input type="checkbox" id="show_steamspy_info" data-setting="show_steamspy_info">
<label for="show_steamspy_info" data-locale-text="options.show_steamspy_info">Show steamspy.com info</label>
</div>
<!--
<div class="option">
<input type="checkbox" id="show_itad_button" data-setting="show_itad_button">
<label for="show_itad_button" data-locale-text="itad.option">Show menu option to sync data to IsThereAnyDeal.com</label>
</div>
-->
</div>
</div>
</div>
<!-- Price -->
<div id="maincontent_price">
<h1 data-locale-text="price">Price</h1>
<div class="settings">
<div id="price_lowestprice_section" class="content_section">
<h2 data-locale-text="options.lowestprice_header">Price History Information</h2>
<div class="option">
<input type="checkbox" id="showlowestprice" data-setting="showlowestprice">
<label for="showlowestprice" data-locale-text="options.lowestprice">Show</label>
</div>
<div class="option">
<input type="checkbox" id="showlowestprice_onwishlist" data-setting="showlowestprice_onwishlist">
<label for="showlowestprice_onwishlist" data-locale-text="options.lowestprice_onwishlist">Show on Wishlist</label>
</div>
<div class="option">
<input type="checkbox" id="showlowestpricecoupon" data-setting="showlowestpricecoupon">
<label for="showlowestpricecoupon" data-locale-text="options.lowestprice_coupon">Include coupon codes in price comparison</label>
</div>
<div class="parent_option option">
<input type="checkbox" id="stores_all" data-setting="showallstores">
<label for="stores_all" data-locale-text="options.stores_all">Compare all stores</label>
</div>
<div id="store_stores" class="sub_option"></div>
<div class="option" >
<label data-locale-text="options.view_in_currency">View in:</label>
<select id="override_price" data-setting="override_price">
<option value="auto" data-locale-text="options.auto_detect">Auto-detect</option>
<option value="USD">USD</option>
</select>
</div>
</div>
<div id="price_regionalprice_section" class="content_section">
<h2 data-locale-text="options.regional_price">Regional Price Comparison</h2>
<div class="option">
<label data-locale-text="options.regional_price_on">Show regional price comparison</label>
<select id="regional_price_on" data-setting="showregionalprice">
<option value="mouse" data-locale-text="options.regional_price_mouse">on Price Mouseover</option>
<option value="always" data-locale-text="always">Always</option>
<option value="off" data-locale-text="never">Never</option>
</select>
</div>
<div class="option" id="regional_price_hideworld">
<input type="checkbox" id="regional_hideworld" data-setting="regional_hideworld">
<label for="regional_hideworld" data-locale-text="options.regional_hideworld">Hide globe indicator</label>
</div>
<div id="region_selects">
<div class="js-regions"></div>
<div>
<button class="js-region-add" data-locale-text="options.add_another_region">Add</button>
<button class="js-region-reset" data-locale-text="theworddefault">Default</button>
<button class="js-region-clear" data-locale-text="thewordclear">Clear</button>
</div>
</div>
</div>
</div>
</div>
<!-- Community -->
<div id="maincontent_community">
<h1 data-locale-text="community">Community</h1>
<div class="settings">
<div id="community_market_section" class="content_section">
<h2 data-locale-text="options.market">Market</h2>
<div class="option">
<input type="checkbox" id="showmarkettotal" data-setting="showmarkettotal">
<label for="showmarkettotal" data-locale-text="options.market_total">Show transaction summary on Market</label>
</div>
<div class="option">
<input type="checkbox" id="hideactivelistings" data-setting="hideactivelistings">
<label for="hideactivelistings" data-locale-text="options.hideactivelistings">Hide all active listings on Market homepage by default</label>
</div>
<div class="option">
<input type="checkbox" id="showlowestmarketprice" data-setting="showlowestmarketprice">
<label for="showlowestmarketprice" data-locale-text="options.showlowestmarketprice">slakjd</label>
</div>
</div>
<div id="community_inventory_section" class="content_section">
<h2 data-locale-text="options.inventory">Inventory</h2>
<div class="parent_option option">
<input type="checkbox" id="quickinv" data-setting="quickinv">
<label for="quickinv" data-locale-text="options.quickinv">Show Quick Sale buttons on Steam Community items in inventory</label>
</div>
<div id="quickinv_opt" class="sub_option">
<label for="quickinv_diff" data-locale-text="options.quickinv_diff">Quick Sale modifier:</label>
<input type="number" step="0.01" id="quickinv_diff" data-setting="quickinv_diff" class="textbox">
<button id="quickinv_default" data-locale-text="theworddefault">Default</button>
</div>
<div class="option">
<input type="checkbox" id="show1clickgoo" data-setting="show1clickgoo">
<label for="show1clickgoo" data-locale-text="options.show1clickgoo">Show "1-Click turn into Gems..." button on applicable inventory items</label>
</div>
<div class="option">
<input type="checkbox" id="showinvnav" data-setting="showinvnav">
<label for="showinvnav" data-locale-text="options.inventory_nav_text">Show advanced navigation on inventory page</label>
</div>
</div>
<div id="community_profile_section" class="content_section">
<h2 data-locale-text="options.profile">Profile</h2>
<div class="parent_option option">
<input type="checkbox" id="show_wishlist_link" data-setting="show_wishlist_link">
<label for="show_wishlist_link" data-locale-text="options.show_wishlist_link">Show a Wishlist link on profiles</label>
</div>
<div class="sub_option option" id="wishlist_link_group">
<input type="checkbox" id="show_wishlist_count" data-setting="show_wishlist_count">
<label for="show_wishlist_count" data-locale-text="options.show_wishlist_count">Show the number of items on Wishlist</label>
</div>
<div class="option">
<input type="checkbox" id="showsteamrepapi" data-setting="showsteamrepapi">
<label for="showsteamrepapi" data-locale-text="options.steamrepapi">Show SteamRep status on profile pages</label>
</div>
<div class="option">
<input type="checkbox" id="profile_permalink" data-setting="profile_permalink">
<label for="profile_permalink" data-locale-text="options.profile_permalink">Show permalink on profiles</label>
</div>
<div class="parent_option option">
<input type="checkbox" id="profile_showcase_twitch" data-setting="profile_showcase_twitch">
<label for="profile_showcase_twitch" data-locale-text="options.profile_showcase_twitch">Add a showcase for Twitch.tv if the profile has a link</label>
</div>
<div class="option sub_option">
<input type="checkbox" id="profile_showcase_own_twitch" data-setting="profile_showcase_own_twitch">
<label for="profile_showcase_own_twitch" data-locale-text="options.profile_showcase_own_twitch">... including your own profile</label>
</div>
<div class="option sub_option">
<input type="checkbox" id="profile_showcase_twitch_profileonly" data-setting="profile_showcase_twitch_profileonly">
<label for="profile_showcase_twitch_profileonly" data-locale-text="options.profile_showcase_twitch_profileonly">... only if the link is in the Profile Summary</label>
</div>
<h3 data-locale-text="options.profile_links">Show profile links to:</h3>
<div class="option">
<input type="checkbox" id="profile_steamrepcn" data-setting="profile_steamrepcn">
<label for="profile_steamrepcn"><i class="es_sites_icons es_steamrepcn_icon"></i>SteamrepCN</label>
</div>
<div class="option">
<input type="checkbox" id="profile_steamrep" data-setting="profile_steamrep">
<label for="profile_steamrep"><i class="es_sites_icons es_steamrep_icon"></i>SteamRep</label>
</div>
<div class="option">
<input type="checkbox" id="profile_steamdbcalc" data-setting="profile_steamdbcalc">
<label for="profile_steamdbcalc"><i class="es_sites_icons es_steamdbcalc_icon"></i>SteamDB</label>
</div>
<div class="option">
<input type="checkbox" id="profile_steamgifts" data-setting="profile_steamgifts">
<label for="profile_steamgifts"><i class="es_sites_icons es_steamgifts_icon"></i>SteamGifts</label>
</div>
<div class="option">
<input type="checkbox" id="profile_steamtrades" data-setting="profile_steamtrades">
<label for="profile_steamtrades"><i class="es_sites_icons es_steamtrades_icon"></i>SteamTrades</label>
</div>
<div class="option">
<input type="checkbox" id="profile_bartervg" data-setting="profile_bartervg">
<label for="profile_bartervg"><i class="es_sites_icons es_bartervg_icon"></i>Barter.vg</label>
</div>
<div class="option">
<input type="checkbox" id="profile_astats" data-setting="profile_astats">
<label for="profile_astats"><i class="es_sites_icons es_astats_icon"></i>Achievement Stats</label>
</div>
<div class="option">
<input type="checkbox" id="profile_backpacktf" data-setting="profile_backpacktf">
<label for="profile_backpacktf"><i class="es_sites_icons es_backpacktf_icon"></i>Backpack.tf</label>
</div>
<div class="option">
<input type="checkbox" id="profile_astatsnl" data-setting="profile_astatsnl">
<label for="profile_astatsnl"><i class="es_sites_icons es_astatsnl_icon"></i>AStats.nl</label>
</div>
<!-- <div id='custom_profile_links'></div> -->
<div class="distance_bottom">
<button id="add-custom-link" data-locale-text="options.add_custom_link">Add custom link</button>
</div>
<div class="option">
<label data-locale-text="options.profile_link_images">Profile link images</label>
<select id="profile_link_images_dropdown" data-setting="show_profile_link_images">
<option value="gray" id="profile_link_images_gray" data-locale-text="options.profile_link_images_gray">Grayscale</option>
<option value="color" id="profile_link_images_color" data-locale-text="options.profile_link_images_color">Colored</option>
<option value="none" id="profile_link_images_none" data-locale-text="options.profile_link_images_none">None</option>
</select>
</div>
</div>
<div id="community_group_section" class="content_section">
<h2 data-locale-text="options.group">Group</h2>
<h3 data-locale-text="options.group_links">Show group links to:</h3>
<div class="option">
<input type="checkbox" id="group_steamgifts" data-setting="group_steamgifts">
<label for="group_steamgifts"><i class="es_sites_icons es_steamgifts_icon"></i>SteamGifts</label>
</div>
</div>
<div id="community_general_section" class="content_section">
<h2 data-locale-text="options.general">General</h2>
<div class="option">
<label for="community_default_tab" data-locale-text="options.community_default_tab">Default community home page tab</label>
<select id="community_default_tab" data-setting="community_default_tab">
<option data-locale-text="all" value="">All</option>
<option data-locale-text="discussions" value="discussions">Discussions</option>
<option data-locale-text="options.screenshots" value="screenshots">Screenshots</option>
<option data-locale-text="options.artwork" value="images">Artwork</option>
<option data-locale-text="options.broadcasts" value="broadcasts">Broadcasts</option>
<option data-locale-text="options.videos" value="videos">Videos</option>
<option data-locale-text="workshop.workshop" value="workshop">Workshop</option>
<option data-locale-text="news" value="allnews">News</option>
<option data-locale-text="guides" value="guides">Guides</option>
<option data-locale-text="reviews" value="reviews">Reviews</option>
</select>
</div>
<div class="option">
<input type="checkbox" id="showallachievements" data-setting="showallachievements">
<label for="showallachievements" data-locale-text="options.showallachievements">Show achievement stats on "All Games" page</label>
</div>
<div class="option">
<input type="checkbox" id="showallstats" data-setting="showallstats">
<label for="showallstats" data-locale-text="options.showallstats">Show playtime stats on "All Games" page</label>
</div>
<div class="option">
<input type="checkbox" id="showcomparelinks" data-setting="showcomparelinks">
<label for="showcomparelinks" data-locale-text="options.showcomparelinks">Show "Compare" links for achievements on friend activity feed</label>
</div>
<div class="parent_option option">
<input type="checkbox" id="hidespamcomments" data-setting="hidespamcomments">
<label for="hidespamcomments" data-locale-text="options.hidespamcomments">Hide spam comments from Workshop & profiles</label>
</div>
<div id="spamcommentregex_list" class="sub_option">
<label for="spamcommentregex" data-locale-text="options.spamcommentregex">Regular Expression string:</label>
<input type="text" id="spamcommentregex" data-setting="spamcommentregex" class="textbox">
<button id="spamcommentregex_default" data-locale-text="theworddefault">Default</button>
</div>
<div class="option">
<input type="checkbox" id="steamcardexchange" data-setting="steamcardexchange">
<label for="steamcardexchange" data-locale-text="options.steamcardexchange">Show SteamCardExchange linkson badges</label>
</div>
<div class="option">
<input type="checkbox" id="wlbuttoncommunityapp" data-setting="wlbuttoncommunityapp">
<label for="wlbuttoncommunityapp" data-locale-text="options.wlbuttoncommunityapp">Show "Add to Wishlist" button on community app hubs</label>
</div>
<div class="option">
<input type="checkbox" id="removeguideslanguagefilter" data-setting="removeguideslanguagefilter">
<label for="removeguideslanguagefilter" data-locale-text="options.removeguideslanguagefilter">Don't automatically filter guides by user language</label>
</div>
<div class="option">
<input type="checkbox" id="disablelinkfilter" data-setting="disablelinkfilter">
<label for="disablelinkfilter" data-locale-text="options.disablelinkfilter">Disable confirmation when accessing external sites</label>
</div>
<div class="option">
<input type="checkbox" id="showallfriendsthatown" data-setting="showallfriendsthatown">
<label for="showallfriendsthatown" data-locale-text="options.showallfriendsthatown">Show "All friends that own"</label>
</div>
</div>
</div>
</div>
</div>
<div id="maincontent_news" class="content">
<h2 data-locale-text="options.changelog">Changelog</h2>
<div id="changelog_text"></div>
</div>
<div id="maincontent_about" class="content">
<div id="es_about_text">
<h2 data-locale-text="about">About</h2>
<p>This is a fork of the Enhanced Steam extension.</p>
<p>We are committed to continuing its development after the <a href="https://github.com/jshackles/Enhanced_Steam">original extension</a> has ended its life.</p>
<p>Visit the <a href="https://es.isthereanydeal.com/">extension's page</a> or our <a href="https://discord.gg/yn57q7f">Discord channel</a> for more info.</p>
</div>
</div>
<div id="maincontent_credits" class="content">
<h2 data-locale-text="this_version">This version</h2>
<h3 data-locale-text="programming">Programming</h3>
<ul class="credits">
<li>Tomáš Fedor <a href="https://steamcommunity.com/id/tomas3333">tomas3333</a></li>
<li>Karl Castle <a href="https://steamcommunity.com/id/isthiriel/">Isthiriel</a></li>
<li>MxtOUT <a href="https://steamcommunity.com/id/makko2305/">Makk0</a></li>
<li>Revadike <a href="https://steamcommunity.com/id/revadike/">Revadike</a></li>
</ul>
<h3 id="translation_text" data-locale-text="translation">Translation</h3>
<table class="indented">
<tr>
<td class="lang-perc brazilian"></td>
<td class="language brazilian">Portuguese-Brazil:</td>
<td>Berna, Mougevit, Ricci, Rubens Vinícius, Scopel, Titoncio, Yachagon, xAranda
(NO AUDIO), 級 Happy
</td>
</tr>
<tr>
<td class="lang-perc bulgarian"></td>
<td class="language bulgarian">Bulgarian:</td>
<td>Castro Wilde, The Nominomicon, XepouH, sappy</td>
</tr>
<tr>
<td class="lang-perc czech"></td>
<td class="language czech">Czech:</td>
<td>Arcane, Bezdak, Martin005[CZ], benetti32|cz, chriss01cz, dapil,
xXx_Pá$0v€cXVI_xXx
</td>
</tr>
<tr>
<td class="lang-perc danish"></td>
<td class="language danish">Danish:</td>
<td>Cake!, Chreddy, Mig_Mikkel [⇄], Redzdaz, Saturate, SnoX, UltraSun,
XDRosenheim, antim
</td>
</tr>
<tr>
<td class="lang-perc dutch"></td>
<td class="language dutch">Dutch:</td>
<td>AreUTalking2Meh, Bennievv, Boelens, Craven, Epicon, FooBar, HumanaSays,
Justin, Nujj, Yeuxkes, Dylwan, Revadike
</td>
</tr>
<tr>
<td class="lang-perc finnish"></td>
<td class="language finnish">Finnish:</td>
<td>3ventic, Elekton, Hilloh, Lumppari, Mairo vain..., Major Parsnip, Master
Indigo, Nightmare_182, NikoDaGreat, Tumpo, frozen.aerocrane, mkfin
</td>
</tr>
<tr>
<td class="lang-perc french"></td>
<td class="language french">French:</td>
<td>Clockmaker, Nuator, Quaelor, Stumpokapow, Vardex, Yanuut, eucalyptux</td>
</tr>
<tr>
<td class="lang-perc german"></td>
<td class="language german">German:</td>
<td>Darkbird |, Edward Cullen, FuriousFry, Gatse, Incredipede, Invisi, MAGIC,
Phenom, Pilzsuppe, Schnitzelfee, Son of Thor, addicT*, chrisli, dochris.2,
larry_ @ DUAS NIMMA HALTEN, red, |«ScReaM»|, À Cookie Jar
</td>
</tr>
<tr>
<td class="lang-perc greek"></td>
<td class="language greek">Greek:</td>
<td>Coccinella, Pandorian, SeCTeen, Sub-Zero</td>
</tr>
<tr>
<td class="lang-perc hungarian"></td>
<td class="language hungarian">Hungarian:</td>
<td>DonRoland, Mohariczozo_HUN, Noarpe, Sirpi, [T-A!] Underyx x 6, atomcsikk,
french_salad, nArrow, ๖VaHooK
</td>
</tr>
<tr>
<td class="lang-perc italian"></td>
<td class="language italian">Italian:</td>
<td>Copons, Drake Fazuku, Rasin, Star1s3, Øktøber</td>
</tr>
<tr>
<td class="lang-perc japanese"></td>
<td class="language japanese">Japanese:</td>
<td>aoisensi, k725, sumannnala</td>
</tr>
<tr>
<td class="lang-perc koreana"></td>
<td class="language koreana">Korean:</td>
<td>CanNaJun, Daum, Hirano, LJreal, RaWouk, Rasin, [GF]meyoung, fivestar, sunk,
À Cookie Jar, 하얀군주
</td>
</tr>
<tr>
<td class="lang-perc latam"></td>
<td class="language latam">Latin American Spanish:</td>
<td></td>
</tr>
<tr>
<td class="lang-perc norwegian"></td>
<td class="language norwegian">Norwegian:</td>
<td>KappaHD, Lazberg, Morten242, Stian, ⑨ ChocolateShuvuu</td>
</tr>
<tr>
<td class="lang-perc polish"></td>
<td class="language polish">Polish:</td>
<td>AciD, Bednar, Laserman//^^, Lordomus, Parseus, Xylo, Yobilat, Yocki,
devLewy, mahon, skubi07, przemo20
</td>
</tr>
<tr>
<td class="lang-perc portuguese"></td>
<td class="language portuguese">Portuguese:</td>
<td>Dr. Costa, Ex0tic, Matias G. H., MrAltamente, Reckoner, Sim, SupSuper,
TheScientist, The_Monk, TilenoL, mgiovani
</td>
</tr>
<tr>
<td class="lang-perc romanian"></td>
<td class="language romanian">Romanian:</td>
<td>Stormania</td>
</tr>
<tr>
<td class="lang-perc russian"></td>
<td class="language russian">Russian:</td>
<td>Engkariensis, Kosheyaka, M@gi$te® Y0d@, Mechanic, Memfys, MrFreemanBBQ,
Robin, Sh1fter, ShawNexT, The Freak, TheMrKochan, delfin_00, dragonsigh
</td>
</tr>
<tr>
<td class="lang-perc schinese"></td>
<td class="language schinese">Simplified Chinese:</td>
<td>Aslike2, Deparsoul, FelinaeEbony, Gold, Iuy, M@nkey, Mr. Error,
MyLittleWarhammer, Rabbitism Bomb, Rasin, [CN]Johnson, i7killpii, mjy,
ssenkrad, yuccatoo, deluxghost, Cattī Crūdēlēs
</td>
</tr>
<tr>
<td class="lang-perc spanish"></td>
<td class="language spanish">Spanish:</td>
<td>#SG# Sharkiller, 00HiZaM, Alien8, Digmin3, ItsMarukka, Kharn Nete, MλXX