Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags

Can I add a bundle to my library so I can view it on the app?

A topic by b00g13 created Mar 08, 2022 Views: 5,828 Replies: 9
Viewing posts 1 to 7
(+3)

Pretty much what title says. I bought a bundle for Ukraine and I'm wondering if there is a way to view and download those games through the app.

(+3)

https://itch.io/post/1500360


Apparently this is a requested feature, but the devs haven't done anything about it yet AFAIK

(+1)

Sadly, there isn't a way to unless you click download one by one on the website to add to your library. I wish that you could choose. I want these games in my Library, and having to click them one by one isn't preferable either because that just overloads the servers.

(2 edits) (+13)

I found a medium post that explained that you could add an addon to chrome and it would automatically click on the claim button for you.
However, that script didn't work 100% for me, so I updated it if anyone wants it :)

Here's the link to the medium guide:
https://medium.com/@stadja/auto-claim-your-itch-io-mega-bundle-games-c425f6a9c1a...

and then just use my changed script instead, not the most beautiful script, but it works:

// is there a game to claim ? if yes, claim it

console.log("Woo!!!");

 if ($('[value="claim"]') && $('[value="claim"]')[0]) {

console.log("Claiming game");

    $('[value="claim"]')[0].click();

     

// have I claimed a game ? If yes, go back

} else if($(".next_page")[0])

{

console.log("No Games found, going to next page");

$(".next_page")[0].click()

}

else if ($("a[href*='https://itch.io/bundle/download/']")[0]) { 

console.log("Going back!");

    $("a[href*='https://itch.io/bundle/download/']")[0].click();

// no game to claim, no game claimed, change page

}

That is awesome, thanks

Thank you very much!

Thanks for your advice!

(1 edit)

Thanks a bunch, LordDz.

(+3)

Here's a script I wrote for this. Easy to use, and it can be configured to work with any bundle.

https://github.com/nyghtly-derek/itchio-bundle-claimer

thank you, sir!

This topic has been auto-archived and can no longer be posted in because there haven't been any posts in a while.