forked from jshackles/Enhanced_Steam
-
Notifications
You must be signed in to change notification settings - Fork 0
/
options.html
504 lines (494 loc) · 27.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
<html>
<script src="js/jQuery.min.js"></script>
<script src="js/localization.js"></script>
<script src="js/options.js"></script>
<link href="css/select2.css" rel="stylesheet" type="text/css">
<link href="css/options.css" rel="stylesheet" type="text/css">
<link href="css/es_flags.css" rel="stylesheet" type="text/css">
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
<head>
<title>Enhanced Steam Options</title>
<base target="_blank">
</head>
<body>
<div id="header">
<div id="header_logo"><img src="img/logo.png"></div>
<span class="notification" id="saved">Options saved</span>
<span class="notification" id="reset_note">Options reset</span>
</div>
<div id="side_bar">
<a class="tab_row selected" id="nav_store">Store</a>
<a class="tab_row" id="nav_price">Price</a>
<a class="tab_row" id="nav_community">Community</a>
<a class="tab_row" id="nav_news">News</a>
<a class="tab_row" id="nav_about">About</a>
<a class="tab_row" id="nav_credits">Credits</a>
<a class="tab_row" id="nav_donate" href="http://www.EnhancedSteam.com/donate.php">Donate</a>
</div>
<div id="contentwrapper">
<div id="maincontent_store" class="content">
<ul>
<li class="header" id="highlight_text">Highlight</li>
<div>
<li class="settings_check">
<input type="checkbox" id="highlight_owned"><label for="highlight_owned" id="highlight_owned_text">Items you own</label>
<a href="http://enhancedsteam.com/featuredetail.php?id=1" class="help"></a>
</li>
<li class="settings_color">
<input type="color" id="highlight_owned_color" class="colorbutton">
<button id="highlight_owned_default" class="btn">Default</button>
</li>
</div>
<div>
<li class="settings_check">
<input type="checkbox" id="highlight_wishlist"><label for="highlight_wishlist" id="highlight_wishlist_text">Items on your wishlist</label>
<a href="http://enhancedsteam.com/featuredetail.php?id=2" class="help"></a>
</li>
<li class="settings_color">
<input type="color" id="highlight_wishlist_color" class="colorbutton">
<button id="highlight_wishlist_default" class="btn">Default</button>
</li>
</div>
<div>
<li class="settings_check">
<input type="checkbox" id="highlight_coupon"><label for="highlight_coupon" id="highlight_coupon_text">Items with coupons</label>
</li>
<li class="settings_color">
<input type="color" id="highlight_coupon_color" class="colorbutton">
<button id="highlight_coupon_default" class="btn">Default</button>
</li>
</div>
<div>
<li class="settings_check">
<input type="checkbox" id="highlight_inv_gift"><label for="highlight_inv_gift" id="highlight_gift_text">Items stored as gift</label>
</li>
<li class="settings_color">
<input type="color" id="highlight_inv_gift_color" class="colorbutton">
<button id="highlight_inv_gift_default" class="btn">Default</button>
</li>
</div>
<div>
<li class="settings_check">
<input type="checkbox" id="highlight_inv_guestpass"><label for="highlight_inv_guestpass" id="highlight_guest_text">Items you have a guest pass for</label>
</li>
<li class="settings_color">
<input type="color" id="highlight_inv_guestpass_color" class="colorbutton">
<button id="highlight_inv_guestpass_default" class="btn">Default</button>
</li>
</div>
<div>
<li class="settings_check">
<input type="checkbox" id="highlight_excludef2p"><label for="highlight_excludef2p" id="highlight_excludef2p_text">Exclude free to play games from highlighting</label>
</li>
</div>
<li class="header" id="tag_text">Tag</li>
<div>
<li class="settings_check">
<input type="checkbox" id="tag_owned"><label for="tag_owned" id="tag_owned_text">Items you own</label>
</li>
<li class="settings_color">
<input type="color" id="tag_owned_color" class="colorbutton">
<button id="tag_owned_color_default" class="btn">Default</button>
</li>
</div>
<div>
<li class="settings_check">
<input type="checkbox" id="tag_wishlist"><label for="tag_wishlist" id="tag_wishlist_text">Items on your wishlist</label>
</li>
<li class="settings_color">
<input type="color" id="tag_wishlist_color" class="colorbutton">
<button id="tag_wishlist_default" class="btn">Default</button>
</li>
</div>
<div>
<li class="settings_check">
<input type="checkbox" id="tag_coupon"><label for="tag_coupon" id="tag_coupon_text">Items with coupons</label>
</li>
<li class="settings_color">
<input type="color" id="tag_coupon_color" class="colorbutton">
<button id="tag_coupon_default" class="btn">Default</button>
</li>
</div>
<div>
<li class="settings_check">
<input type="checkbox" id="tag_inv_gift"><label for="tag_inv_gift" id="tag_gift_text">Items stored as gift</label>
</li>
<li class="settings_color">
<input type="color" id="tag_inv_gift_color" class="colorbutton">
<button id="tag_inv_gift_default" class="btn">Default</button>
</li>
</div>
<div>
<li class="settings_check">
<input type="checkbox" id="tag_inv_guestpass"><label for="tag_inv_guestpass" id="tag_guest_text">Items you have a guest pass for</label>
</li>
<li class="settings_color">
<input type="color" id="tag_inv_guestpass_color" class="colorbutton">
<button id="tag_inv_guestpass_default" class="btn">Default</button>
</li>
</div>
<li class="header" id="hide_text">Hide</li>
<li><input type="checkbox" id="hide_owned"><label for="hide_owned" id="hide_owned_text">Items you own in search results</label></li>
<li><input type="checkbox" id="hidetmsymbols"><label for="hidetmsymbols" id="hidetmsymbols_text">Trademark and Copyright symbols in game titles</label></li>
<li><input type="checkbox" id="hideinstallsteambutton"><label for="hideinstallsteambutton" id="store_hide_install_text">Hide "Install Steam" button</label></li>
<li><input type="checkbox" id="hideaboutmenu"><label for="hideaboutmenu" id="store_hide_about_menu">Hide "About" link</label></li>
<li class="header" id="language_text">Language</li>
<li><input type="checkbox" id="showlanguagewarning"><label for="showlanguagewarning" id="store_show_languagewarning_text">Show warning if browsing in a language other than</label>
<select id="warning_language">
<option value="English">English</option>
<option value="Brazilian">Brazilian</option>
<option value="Bulgarian">Bulgarian</option>
<option value="Czech">Czech</option>
<option value="Danish">Danish</option>
<option value="Dutch">Dutch</option>
<option value="Finnish">Finnish</option>
<option value="French">French</option>
<option value="Greek">Greek</option>
<option value="German">German</option>
<option value="Hungarian">Hungarian</option>
<option value="Italian">Italian</option>
<option value="Japanese">Japanese</option>
<option value="Koreana">Korean</option>
<option value="Norwegian">Norwegian</option>
<option value="Polish">Polish</option>
<option value="Portuguese">Portuguese</option>
<option value="Russian">Russian</option>
<option value="Romanian">Romanian</option>
<option value="Schinese">Simplified Chinese</option>
<option value="Spanish">Spanish</option>
<option value="Swedish">Swedish</option>
<option value="Tchinese">Traditional Chinese</option>
<option value="Thai">Thai</option>
<option value="Turkish">Turkish</option>
<option value="Ukrainian">Ukrainian</option>
</select>
</li>
<li class="header" id="homepage_text">Homepage</li>
<li><label for="homepage_default_tab" id="homepage_default_tab_text">Default homepage tab:</label>
<select id="homepage_tab_selection">
<option value="remember">Remember Previous</option>
<option value="tab_newreleases_content_trigger">Popular New Releases</option>
<option value="es_allreleases">All New Releases</option>
<option value="tab_topsellers_content_trigger">Top Sellers</option>
<option value="tab_upcoming_content_trigger">Upcoming</option>
<option value="tab_specials_content_trigger">Specials</option>
<option value="es_popular">Popular</option>
</select>
</li>
<li class="header" id="store_general">General</li>
<li><input type="checkbox" id="replaceaccountname"><label for="replaceaccountname" id="store_replace_account_name">Replace account name with community name</label></li>
<li><input type="checkbox" id="showfakeccwarning"><label for="showfakeccwarning" id="header_showfakeccwarning_text">Show warning if browsing in non-account region</label></li>
<li><input type="checkbox" id="send_age_info"><label for="send_age_info" id="send_age_info_text">Automatically send age verification when requested</label></li>
<li><input type="checkbox" id="html5video"><label for="html5video" id="html5video_text">Show videos using HTML5 instead of Flash</label></li>
<li><input type="checkbox" id="contscroll"><label for="contscroll" id="contscroll_text">Enable continuous scrolling of search results</label></li>
<li><input type="checkbox" id="showdrm"><label for="showdrm" id="store_drm_text">Show 3rd party DRM warnings</label><a href="http://enhancedsteam.com/featuredetail.php?id=3" class="help"></a></li>
<li><input type="checkbox" id="showacrtag"><label for="showacrtag" id="store_acrtag_text">Show warnings on items where cross region trading is disabled</label></li>
<li><input type="checkbox" id="showmcus"><label for="showmcus" id="store_metacritic_text">Show Metacritic user scores</label><a href="http://enhancedsteam.com/featuredetail.php?id=10" class="help"></a></li>
<li><input type="checkbox" id="showhltb"><label for="showhltb" id="store_hltb_text">Show HowLongToBeat.com information</label></li>
<li><input type="checkbox" id="showsteamdb"><label for="showsteamdb" id="store_steamdb_text">Show SteamDB links</label></li>
<li><input type="checkbox" id="showastatslink"><label for="showastatslink" id="store_astatslink_text">Show AStats link on app pages</label></li>
<li><input type="checkbox" id="showpcgw"><label for="showpcgw" id="store_pcgw_text">Show PCGamingWiki links</label></li>
<li><input type="checkbox" id="showsteamcardexchange"><label for="showsteamcardexchange" id="store_steamcards_text">Show SteamCardExchange links on store pages</label></li>
<li><input type="checkbox" id="showwsgf"><label for="showwsgf" id="store_wsgf_text">Show WSGF (Widescreen) info</label><a href="http://enhancedsteam.com/featuredetail.php?id=15" class="help"></a></li>
<li><input type="checkbox" id="show_steamchart_info"><label for="show_steamchart_info" id="store_steamchart_info_text">Show SteamCharts.com info</label></li>
<li><input type="checkbox" id="show_package_info"><label for="show_package_info" id="store_package_info_text">Show package info for all apps</label></li>
<li><input type="checkbox" id="show_sysreqcheck"><label for="show_sysreqcheck" id="show_sysreqcheck_text">Show button to check system requirements on app pages (Experimental!)</label></li>
<li><input type="checkbox" id="show_carousel_descriptions"><label for="show_carousel_descriptions" id="store_carousel_descriptions_text">Show app descriptions on storefront carousel</label><a href="http://enhancedsteam.com/featuredetail.php?id=26" class="help"></a></li>
<li><input type="checkbox" id="show_early_access"><label for="show_early_access" id="show_early_access_text">Show Early Access image banners</label>
</ul>
</div>
<div id="maincontent_price" class="content" style="display: none">
<ul>
<li class="header" id="store_lowestprice_header">Price History Information</li>
<li>
<input type="checkbox" id="showlowestprice"><label for="showlowestprice" id="store_lowestprice_text">Show</label>
<a href="http://enhancedsteam.com/featuredetail.php?id=5" class="help"></a>
</li>
<li>
<input type="checkbox" id="showlowestprice_onwishlist"><label for="showlowestprice_onwishlist" id="store_lowestprice_onwishlist_text">Show on Wishlist</label>
</li>
<li>
<input type="checkbox" id="showlowestpricecoupon"><label for="showlowestpricecoupon" id="store_lowestprice_coupon_text">Include coupon codes in price comparison</label>
</li>
<li>
<input type="checkbox" id="stores_all"><label for="stores_all" id="lowestprice_stores_all_text">Compare all stores</label>
</li>
<table id="store_stores" style="display: none" border=0>
<tr>
<td><input type="checkbox" id="steam"><label for="steam">Steam</label></td>
<td><input type="checkbox" id="amazonus"><label for="amazonus">Amazon US</label></td>
<td><input type="checkbox" id="impulse"><label for="impulse">GameStop PC</label></td>
</tr>
<tr>
<td><input type="checkbox" id="gamersgate"><label for="gamersgate">GamersGate</label></td>
<td><input type="checkbox" id="greenmangaming"><label for="greenmangaming">GreenMan Gaming</label></td>
<td><input type="checkbox" id="gamefly"><label for="gamefly">GameFly PC</label></td>
</tr>
<tr>
<td><input type="checkbox" id="origin"><label for="origin">Origin PC</label></td>
<td><input type="checkbox" id="uplay"><label for="uplay">Uplay PC</label></td>
<td><input type="checkbox" id="indiegalastore"><label for="indiegalastore">IndieGala Store</label></td>
</tr>
<tr>
<td><input type="checkbox" id="desura"><label for="desura">Desura</label></td>
<td><input type="checkbox" id="gog"><label for="gog">GOG</label></td>
<td><input type="checkbox" id="humblestore"><label for="humblestore">Humble Store</label></td>
</tr>
<tr>
<td><input type="checkbox" id="humblewidgets"><label for="humblewidgets">Humble Widgets</label></td>
<td><input type="checkbox" id="gamesplanet"><label for="gamesplanet">GamesPlanet</label></td>
<td><input type="checkbox" id="getgames"><label for="getgames">GetGames</label></td>
</tr>
<tr>
<td><input type="checkbox" id="newegg"><label for="newegg">Newegg</label></td>
<td><input type="checkbox" id="adventureshop"><label for="adventureshop">Adventure Shop</label></td>
<td><input type="checkbox" id="nuuvem"><label for="nuuvem">Nuuvem</label></td>
</tr>
<tr>
<td><input type="checkbox" id="shinyloot"><label for="shinyloot">ShinyLoot</label></td>
<td><input type="checkbox" id="dlgamer"><label for="dlgamer">DLGamer</label></td>
<td><input type="checkbox" id="dotemu"><label for="dotemu">DotEmu</label></td>
</tr>
<tr>
<td><input type="checkbox" id="indiegamestand"><label for="indiegamestand">IndieGameStand</label></td>
<td><input type="checkbox" id="squenix"><label for="squenix">Square Enix</label></td>
<td><input type="checkbox" id="bundlestars"><label for="bundlestars">Bundle Stars</label></td>
</tr>
<tr>
<td><input type="checkbox" id="fireflower"><label for="fireflower">FireFlower</label></td>
<td><input type="checkbox" id="gametap"><label for="gametap">GamesTap</label></td>
<td><input type="checkbox" id="gameolith"><label for="gameolith">Gameolith</label></td>
</tr>
<tr>
<td><input type="checkbox" id="gamesrepublic"><label for="gamesrepublic">GamesRepublic</label></td>
</tr>
</table>
<li class="header" id="store_regionalprice_header">Regional Price Comparison</li>
<li id="regional_price_li">
<label id="showregionalprice_text">Show regional price comparison</label>
<select id="regional_price_on">
<option value="mouse">on Price Mouseover</option>
<option value="always">Always</option>
<option value="off">Never</option>
</select>
</li>
<li id="regional_price_hideworld"><input type="checkbox" id="regional_hideworld"><label for="regional_hideworld" id="regional_hideworld_text">Hide globe indicator</label></li>
<div id='region_selects'>
<div style='margin-top: 15px; margin-left: 32px;'><button id="add_another_region" class="btn">Add</button><button id="reset_countries" class="btn">Default</button></div>
</div>
</ul>
</div>
<div id="maincontent_community" class="content" style="display: none">
<ul>
<li class="header" id="community_general">General</li>
<li>
<input type="checkbox" id="showtotal"><label for="showtotal" id="total_spent_text">Show total spent on account page</label>
<a href="http://enhancedsteam.com/featuredetail.php?id=6" class="help"></a>
</li>
<li>
<input type="checkbox" id="showmarkettotal"><label for="showmarkettotal" id="market_total_text">Show transaction summary on Market</label>
<a href="http://enhancedsteam.com/featuredetail.php?id=16" class="help"></a>
</li>
<li>
<input type="checkbox" id="showsteamrepapi"><label for="showsteamrepapi" id="steamrep_api_text">Show SteamRep status on profile pages</label>
</li>
<li>
<input type="checkbox" id="showinvnav"><label for="showinvnav" id="inventory_nav_text">Show advanced navigation on inventory page</label>
</li>
<li>
<input type="checkbox" id="showesbg"><label for="showesbg" id="es_background_text">Set custom background on "Edit Profile" screen</label>
<a href="http://enhancedsteam.com/featuredetail.php?id=17" class="help"></a>
</li>
<li>
<input type="checkbox" id="showallachievements"><label for="showallachievements" id="allachievements_text">Show achievement stats on "All Games" page</label>
<a href="http://enhancedsteam.com/featuredetail.php?id=18" class="help"></a>
</li>
<li>
<input type="checkbox" id="showcomparelinks"><label for="showcomparelinks" id="showcomparelinks_text">Show "Compare" links for achievements on friend activity feed</label>
</li>
<li>
<input type="checkbox" id="showgreenlightbanner"><label for="showgreenlightbanner" id="greenlight_banner_text">Replace Steam Greenlight banner</label>
<a href="http://enhancedsteam.com/featuredetail.php?id=14" class="help"></a>
</li>
<li>
<input type="checkbox" id="hideactivelistings"><label for="hideactivelistings" id="hideactivelistings_text">Hide all active listings on Market homepage by default</label>
</li>
<li>
<input type="checkbox" id="hidespamcomments"><label for="hidespamcomments" id="hidespamcomments_text">Hide spam comments from Workshop & profiles</label><a id="show_spamcommentregex">(Customize)</a>
</li>
<li id="spamcommentregex_list">
<label for="spamcommentregex" id="spamcommentregex_text">Regular Expression string:</label><input type="text" id="spamcommentregex" class="textbox"><button id="spamcommentregex_default" class="btn">Default</button>
</li>
<li>
<input type="checkbox" id="steamcardexchange"><label for="steamcardexchange" id="steamcardexchange_text">Show SteamCardExchange links on badges</label>
<a href="http://enhancedsteam.com/featuredetail.php?id=19" class="help"></a>
</li>
<li>
<input type="checkbox" id="wlbuttoncommunityapp"><label for="wlbuttoncommunityapp" id="wlbuttoncommunityapp_text">Show "Add to Wishlist" button on community app hubs</label>
</li>
<li>
<input type="checkbox" id="show1clickgoo"><label for="show1clickgoo" id="show1clickgoo_text">Show "1-Click turn into Gems..." button on applicable inventory items</label>
</li>
<li>
<input type="checkbox" id="profile_permalink"><label for="profile_permalink" id="profile_permalink_text">Show permalink on profiles</label>
</li>
<!-- commenting out for future development
<li>
<input type="checkbox" id="profile_api_info"><label for="profile_api_info" id="profile_api_info_text">Show user API link on profiles</label>
<p id="api_key_block"><span id="api_key_text">API Key</span>: <input type="text" class="textbox" size="38" maxlength="32" id="api_key"><a href="http://steamcommunity.com/dev/apikey" target="_blank" class="help"></a></p>
</li>
-->
<div id="profile_link_text">Show profile links to:</div><a href="http://enhancedsteam.com/featuredetail.php?id=21" class="help"></a>
<ul id="profile_links">
<li>
<input type="checkbox" id="profile_steamrep"><label for="profile_steamrep"><img src="img/ico/steamrep.png" class="site_icon site_icon_gray" /><img src="img/ico/steamrep_col.png" class="site_icon profile_link_icon_background site_icon_col" />SteamRep</label>
</li>
<li>
<input type="checkbox" id="profile_steamdbcalc"><label for="profile_steamdbcalc"><img src="img/ico/steamdb.png" class="site_icon" />SteamDB</label>
</li>
<li>
<input type="checkbox" id="profile_steamgifts"><label for="profile_steamgifts"><img src="img/ico/steamgifts.png" class="site_icon site_icon_gray" /><img src="img/ico/steamgifts_col.png" class="site_icon site_icon_col" />SteamGifts</label>
</li>
<li>
<input type="checkbox" id="profile_astats"><label for="profile_astats"><img src="img/ico/achievementstats.png" class="site_icon site_icon_gray" /><img src="img/ico/achievementstats_col.png" class="site_icon site_icon_col" />Achievement Stats</label>
</li>
<li>
<input type="checkbox" id="profile_backpacktf"><label for="profile_backpacktf"><img src="img/ico/backpacktf.png" class="site_icon site_icon_gray" /><img src="img/ico/backpacktf_col.png" class="site_icon site_icon_col" />Backpack.tf</label>
</li>
<li>
<input type="checkbox" id="profile_astatsnl"><label for="profile_astatsnl"><img src="img/ico/astatsnl.png" class="site_icon site_icon_gray" /><img src="img/ico/astatsnl_col.png" class="site_icon site_icon_col" />AStats.nl</label>
</li>
</ul>
<li>
<label id="show_profile_link_images_text">Profile link images:</label>
<select id="profile_link_images_dropdown">
<option value="gray" id="profile_link_images_gray">Grayscale</option>
<option value="color" id="profile_link_images_color">Colored</option>
<option value=false id="profile_link_images_none">None</option>
</select>
</li>
</ul>
</div>
<div id="maincontent_news" class="content" style="display: none">
<div id="changelog_text" class="header">Changelog:</div>
</div>
<div id="maincontent_about" class="content" style="display: none">
<div id="es_about_text"></div>
</div>
<div id="maincontent_credits" class="content" style="display: none">
<ul class="credits">
<li class="header" id="programming_text">Programming</li>
<li>Jason '<a href="http://steamcommunity.com/profiles/76561198040672342" id="jshackles_steam">jshackles</a>' Shackles</li>
<li>Ben '<a href="http://steamcommunity.com/profiles/76561198000198761" id="smashman_steam">Smashman</a>' Williams</li>
</ul>
<div class="header" id="translation_text">Translation</div>
<table class="translation">
<tr>
<td class="language">Portuguese-Brazil:</td>
<td>Berna, Mougevit, Ricci, Rubens Vinícius, Scopel, Titoncio, Yachagon, xAranda (NO AUDIO), 級 Happy</td>
</tr>
<tr>
<td class="language">Bulgarian:</td>
<td>Castro Wilde, The Nominomicon, XepouH</td>
</tr>
<tr>
<td class="language">Czech:</td>
<td>Arcane, Bezdak, Martin005[CZ], benetti32|cz, chriss01cz, dapil, xXx_Pá$0v€cXVI_xXx</td>
</tr>
<tr>
<td class="language">Danish:</td>
<td>Cake!, Chreddy, Mig_Mikkel [⇄], Redzdaz, Saturate, SnoX, UltraSun, XDRosenheim, antim</td>
</tr>
<tr>
<td class="language">Dutch:</td>
<td>AreUTalking2Meh, Bennievv, Boelens, Craven, Epicon, FooBar, HumanaSays, Justin, Nujj, Yeuxkes</td>
</tr>
<tr>
<td class="language">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="language">French:</td>
<td>Clockmaker, Nuator, Quaelor, Stumpokapow, Vardex, Yanuut, eucalyptux</td>
</tr>
<tr>
<td class="language">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="language">Greek:</td>
<td>Coccinella, Pandorian, SeCTeen, Sub-Zero</td>
</tr>
<tr>
<td class="language">Hungarian:</td>
<td>DonRoland, Mohariczozo_HUN, Noarpe, Sirpi, [T-A!] Underyx x 6, atomcsikk, french_salad, nArrow, ๖VaHooK</td>
</tr>
<tr>
<td class="language">Italian:</td>
<td>Copons, Drake Fazuku, Rasin, Star1s3, Øktøber</td>
</tr>
<tr>
<td class="language">Japanese:</td>
<td>aoisensi, k725, sumannnala</td>
</tr>
<tr>
<td class="language">Korean:</td>
<td>CanNaJun, Daum, Hirano, LJreal, RaWouk, Rasin, [GF]meyoung, fivestar, sunk, À Cookie Jar, 하얀군주</td>
</tr>
<tr>
<td class="language">Norwegian:</td>
<td>KappaHD, Lazberg, Morten242, Stian, ⑨ ChocolateShuvuu</td>
</tr>
<tr>
<td class="language">Polish:</td>
<td>AciD, Bednar, Laserman//^^, Lordomus, Parseus, Xylo, Yobilat, Yocki, devLewy, mahon, skubi07</td>
</tr>
<tr>
<td class="language">Portuguese:</td>
<td>Dr. Costa, Ex0tic, Matias G. H., MrAltamente, Reckoner, Sim, SupSuper, TheScientist, The_Monk, TilenoL</td>
</tr>
<tr>
<td class="language">Romanian:</td>
<td>Stormania</td>
</tr>
<tr>
<td class="language">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="language">Simplified Chinese:</td>
<td>Aslike2, Deparsoul, FelinaeEbony, Gold, Iuy, M@nkey, Mr. Error, MyLittleWarhammer, Rabbitism Bomb, Rasin, [CN]Johnson, i7killpii, mjy, ssenkrad, yuccatoo</td>
</tr>
<tr>
<td class="language">Spanish:</td>
<td>#SG# Sharkiller, 00HiZaM, Alien8, Digmin3, ItsMarukka, Kharn Nete, MλXX [PA-D], Profesor Pistacho, Robotnick, Silence, \\Vince, giraam, kalprestito, kulapik, p0tat0, wasakakero, xGreg</td>
</tr>
<tr>
<td class="language">Swedish:</td>
<td>Chainsawkitten, Death King, Deques, Lumppari, [MG] Rubiin, 전주 0x3 제</td>
</tr>
<tr>
<td class="language">Traditional Chinese:</td>
<td>Atraveller, JD OwO, Lex Song, MoDMeR, Mr. Error, NOKIA SE, Rasin, omylist, tonyli1357, 破曉之殤丶Revelation</td>
</tr>
<tr>
<td class="language">Thai:</td>
<td>Epicenter, Likecyber, Magnative, Radius, Rasin, [LPG] 7-elephant</td>
</tr>
<tr>
<td class="language">Turkish:</td>
<td>Beedle, Dijkstra[TR], Eray, Gevanni, Grievous, Neadiatre[Trade] #SOMA, Sound of Night, Su1ciDe, eayurdaer, tyyaman, veteran, ÖŞEK YALANCI</td>
</tr>
<tr>
<td class="language">Ukranian:</td>
<td>Anakin Skywalker, BlackSwan, Dorimi, Gentleneer, GreK™, MoDMeR, NutsUA, Peacefool Peopel, Smith M.D., Stakan, [BA]zekainhuman</td>
</tr>
</table>
</div>
<div id="footer">
<div><a href="http://www.enhancedsteam.com" id="foot_link">Enhanced Steam Extension</a></div><span id="author_info">by jshackles</span>
<div><button id="reset" class="btn">Reset options</button></div>
</div>
</div>
</body>
</html>