this post was submitted on 05 Jul 2023
17 points (100.0% liked)

Free Video Game Giveaways

3367 readers
17 users here now

This is a place to post limited-time giveaways of full video games that are then yours to keep forever at no cost.

See the sticky post for full details of what to post, how to post it, and other useful resources.

Keep it civil and keep it chill!

founded 2 years ago
MODERATORS
17
submitted 2 years ago* (last edited 1 year ago) by smeg@feddit.uk to c/freegames@feddit.uk
 

I've created this community because I've found a few places that regularly give away free games, and there are probably a lot of you out there who aren't aware of them but also like freebies!

This is a place to post limited-time giveaways of full video games that are then yours to keep forever at no cost (i.e. this is not for steam sales, free-to-play games, free weekends, competition giveaways, or free in-game items!) - that said I'm not the boss here, if people want to change the rules then just shout!

Here are some good places to keep an eye on:

I'll probably post any freebies I see on these sites whenever I happen to check them but don't let that stop you if you see them before me! Also these are all PC games as that's what I generally play, if you find any similar deals for consoles then feel free to post them too.

you are viewing a single comment's thread
view the rest of the comments
[–] SatyrSack@feddit.org 1 points 2 months ago (1 children)

Hey, can you provide some assistance with this filter I posted about in another thread? It works great at the moment, but I figure there is a better way to go about it that might be more future-proof. Original comment below:


Not sure where to really post this, so I will just try in this thread. I came up with a custom uBlock Origin filter to remove all the games for certain stores (Epic, Prime Gaming, etc.) from the free games page on Amazon so you can focus on only the stores you actually care about (GOG, etc.). Just remove the line for each store that you do want to see. But it looks like it is likely not dynamic enough to apply to potential future updates to the webpage. Is anyone here familiar with uBock filter syntax and able to assist?

In English, the logic here is basically:

  1. Find the free games tab by id
  2. Navigate six child div tags down
  3. Find child a tag with a data-a-target value of learn-more-card and href containing the target string
  4. Block the fourth parent div tag of that a tag

filter

! Amazon Gaming - GOG
gaming.amazon.com###offer-section-FGWP_FULL > div > div > div > div > div > div > a[data-a-target='learn-more-card'][href*='-gog/']:upward(div):upward(div):upward(div):upward(div)
! Amazon Gaming - Prime
gaming.amazon.com###offer-section-FGWP_FULL > div > div > div > div > div > div > a[data-a-target='learn-more-card'][href*='-aga/']:upward(div):upward(div):upward(div):upward(div)
! Amazon Gaming - Epic
gaming.amazon.com###offer-section-FGWP_FULL > div > div > div > div > div > div > a[data-a-target='learn-more-card'][href*='-epic/']:upward(div):upward(div):upward(div):upward(div)
! Amazon Gaming - Legacy
gaming.amazon.com###offer-section-FGWP_FULL > div > div > div > div > div > div > a[data-a-target='learn-more-card'][href*='-legacy/']:upward(div):upward(div):upward(div):upward(div)
! Amazon Gaming - Luna
gaming.amazon.com###offer-section-FGWP_FULL > div > div > div > div > div > div > a[data-a-target='learn-more-card'][href*='//luna.']:upward(div):upward(div):upward(div):upward(div)

Relevant HTML

<div id="offer-section-FGWP_FULL" data-a-target="offer-section-FGWP_FULL" class="offer-list__content tw-md-mg-b-4 tw-mg-b-3">
    <div data-a-target="offer-list-FGWP_FULL" class="tw-md-pd-x-10 tw-mg-b-4 tw-pd-x-3 tw-sm-pd-x-6 tw-xxl-pd-x-10">
        <div class="offer-list__content__grid">
            <div class="tw-block" vc0zxivtr="" ex22dn0ao="">
                <div>
                    <div data-a-target="tw-animation-target" class="tw-animation tw-animation--animate tw-animation--duration-short tw-animation--fade-in tw-animation--fill-mode-both tw-animation--timing-ease-in">
                        <div class="item-card__action">
                            <a aria-label="Disney•Pixar WALL-E"
                                class="tw-interactive tw-block tw-full-width tw-interactable tw-interactable--alpha"
                                data-a-target="learn-more-card"
                                href="/disney-pixar-wall-e-aga/dp/[redacted by SatyrSack]">
                            </a>
                        </div>
                    </div>
                </div>
            </div>
        </div>
    </div>
</div>

[–] Auster@lemm.ee 1 points 2 months ago (1 children)

Maybe this?

codegaming.amazon.com##a[href*="platform_specific_tag/"]:upward(div[class="tw-block"])
It's the filter that is the least dependent on div blocks' structure that I can think, and unless Amazon changes either (or both) their links format and how they list stuff, at most I think you'd need to change the tw-block part every once in a while, as such bigger sites seem to change the divs' names some times.

[–] SatyrSack@feddit.org 1 points 2 months ago* (last edited 2 months ago) (2 children)

Thanks! Can you work in #offer-section-FGWP_FULL as the starting point for the filter? I am not sure what syntax to use to look for a[href*="platform_specific_tag/"] under #offer-section-FGWP_FULL without specifying how many elements down it is. Without targeting that id for the "Free games" tab, your filter leaves weird blank spots in the "All" tab for each game that got filtered out.

[–] Auster@lemm.ee 1 points 2 months ago

I usually go directly to https://gaming.amazon.com/home?filter=Game so I'll need to check the all tab too.

[–] Auster@lemm.ee 1 points 2 months ago* (last edited 2 months ago) (1 children)

Just checked it.

For the empty spaces in the carousel, you could use this:

spoilergaming.amazon.com##a[href*="platform_specific_tag/"]:upward(li[class="grid-carousel__slide"])


And the platform_specific_tag is what appears in their links when you open their pages and that, from what I can observe, is specific to where they activate in.

For example, in Jurassic World Evolution and Electrician Simulator, the tag is the epic/ part of the link.

For Overcooked 2 and The Outer Worlds, it's gog/.

And though it should work without the /, maybe better keep it, as the lack thereof may trigger false positives, like if Legacy of Kain for GOG is available, but you block legacy results in case you want nothing from Legacy Games, you won't see Legacy of Kain due to its name appearing in the link.

[–] SatyrSack@feddit.org 2 points 2 months ago

This is what I ended up with to block everything but GOG. Thanks for all your help!

filter

! Amazon Gaming - GOG
!gaming.amazon.com##a[href*="-gog/"]:upward(li[class="grid-carousel__slide"])
!gaming.amazon.com##a[href*="-gog/"]:upward(div[class="tw-block"])
! Amazon Gaming - Prime
gaming.amazon.com##a[href*="-aga/"]:upward(li[class="grid-carousel__slide"])
gaming.amazon.com##a[href*="-aga/"]:upward(div[class="tw-block"])
! Amazon Gaming - Epic
gaming.amazon.com##a[href*="-epic/"]:upward(li[class="grid-carousel__slide"])
gaming.amazon.com##a[href*="-epic/"]:upward(div[class="tw-block"])
! Amazon Gaming - Legacy
gaming.amazon.com##a[href*="-legacy/"]:upward(li[class="grid-carousel__slide"])
gaming.amazon.com##a[href*="-legacy/"]:upward(div[class="tw-block"])
! Amazon Gaming - Luna
gaming.amazon.com##a[href*="//luna."]:upward(li[class="grid-carousel__slide"])
gaming.amazon.com##a[href*="//luna."]:upward(div[class="tw-block"])