+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.
25 Comments - Last post 29 minutes ago by emsee
120 Comments - Last post 45 minutes ago by Amitte
1,232 Comments - Last post 48 minutes ago by Draconiano
47,118 Comments - Last post 1 hour ago by Fewithor
60 Comments - Last post 2 hours ago by Gamy7
56 Comments - Last post 3 hours ago by Mantve
16,338 Comments - Last post 3 hours ago by Peiperissimus
110 Comments - Last post 2 minutes ago by Mitsukuni
12 Comments - Last post 9 minutes ago by AllTracTurbo
22 Comments - Last post 22 minutes ago by Melusca
210 Comments - Last post 40 minutes ago by AlohaHawaii
16,296 Comments - Last post 42 minutes ago by Mishasama
31 Comments - Last post 45 minutes ago by Myrsan
40 Comments - Last post 51 minutes ago by reigifts
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.