+1 to ESGST. I use that in the Giveaway filter / presets option. Hide Entered, and you can also get creative, like hiding everything that's more than 24 or 48 hours away from ending, so you can sort the remaining ones by chance of winning. ESGST has a lot of functionality if you're willing to spend some time playing with it
Comment has been collapsed.
ESGST can help you with that.
I see that you joined a week back, Im a newcomer myself. You should take the opportunity to further explore the site.
If you look at the right side column, the first option is Add-ons/Tools. Where you find further details about ESGST.
Comment has been collapsed.
Here's a simple userscript:
// ==UserScript==
// @name SteamGifts - Hide Entered Giveaways
// @description Hide giveaways already entered
// @namespace https://www.steamgifts.com/user/ormax3
// @author ormax3
// @match https://www.steamgifts.com/
// @match https://www.steamgifts.com/giveaways/search*
// @icon https://cdn.steamgifts.com/img/favicon.ico
// ==/UserScript==
document.querySelectorAll('.is-faded').forEach(el => el.parentNode.remove());
Or you can create it as a bookmarklet if you prefer:
javascript:(function(){document.querySelectorAll('.is-faded').forEach(el => el.parentNode.remove());})()
Comment has been collapsed.
149 Comments - Last post 3 minutes ago by carneval
57 Comments - Last post 1 hour ago by bongwaterbuttchug
82 Comments - Last post 2 hours ago by Zeri
17,129 Comments - Last post 2 hours ago by HustlaOG
452 Comments - Last post 3 hours ago by Aydaylin
200 Comments - Last post 3 hours ago by CelticBatman
1,731 Comments - Last post 3 hours ago by mm3n
86 Comments - Last post 7 minutes ago by Butterkatt
10 Comments - Last post 7 minutes ago by CASA0
82 Comments - Last post 38 minutes ago by zevnda
19 Comments - Last post 54 minutes ago by aquatorrent
1,804 Comments - Last post 1 hour ago by Sakakino
85 Comments - Last post 1 hour ago by fasderrally
7 Comments - Last post 1 hour ago by InsurmountableOdds
I notice when I enter a giveaway that when it displays on the list it is grayed out, which helps to let you know which giveaways you have already entered.
This still necessitates scrolling past them though.
I was wondering if there was some way we could include an option at https://www.steamgifts.com/account/settings/giveaways (a checkable box) where you could opt to simply have them not display at all (as if you had blacklisted the game using the slashed-out eyeball except it only hides that individual entry for the game, not ALL entries) as an alternative.
This would lead to less scrolling and make it easier to keep track of the entries we hadn't done.
Comment has been collapsed.