Skip to content

Instantly share code, notes, and snippets.

@GithubUser5462
Last active October 15, 2022 23:01
Show Gist options
  • Save GithubUser5462/14214cf0a81140a753a52c21ef45627c to your computer and use it in GitHub Desktop.
Save GithubUser5462/14214cf0a81140a753a52c21ef45627c to your computer and use it in GitHub Desktop.
Find and remove removed /hidden / unlisted / delisted game from Steam Wishlist

Automatic script and manual script

Manual mode

Find the apps

  1. Get app ids from EXPORT WISHLIST button, TEXT FORMAT = %appid% in: https://store.steampowered.com/wishlist/

  2. Get all app ids from rgWishlist in: https://store.steampowered.com/dynamicstore/userdata/

  3. Find the difference - app ids in list 2. but not in list 1.

Optional: You can check what those apps were on https://steamdb.info/app/<appid>

Remove them from the wishlist

  1. Go to your wishlist

  2. Open the browser dev mode Ctrl + Shift + I, switch to the Console tab.

  3. Copy the following code in the Console, replace the appid with your value and press enter to run it.

$J.post(g_strWishlistBaseURL + 'remove/', { 'appid': 1384070, 'sessionid': g_sessionID });

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment