If you don't use ranked order for Steam wishlist, this may be interesting for you
To match your steam wishlist ranked order to price, wishlisted, titles, etc. You can do this:
1) Login to https://barter.vg/, if you haven't already
2) Go to https://barter.vg/u/my/w/ and press Sync with Steam
3) Wait for wishlist to be synced with steam
4) Click on your preferred order link (Sort by Title, Recent, Reviews, Groupings, Release date, Price, Wishlist, Tradable, Bundled)
5) Open javascript console (Ctrl + Shift + I) and execute this code:

Array.from(document.querySelectorAll(".collection a+ a")).map(e => e.href.split("/")[4]).join();

6) Now copy the comma-separated list of appids (without the quotes)
7) Go to https://store.steampowered.com/wishlist/ (make sure you are logged in)
8) Open javascript console (Ctrl + Shift + I) and execute this code:

var wl = [/* PASTE YOUR APPID LIST BETWEEN BRACKETS HERE*/];
var steamid = "/* YOUR STEAMID64 BETWEEN QUOTES HERE */";  

jQuery.post("https://store.steampowered.com/wishlist/profiles/" + steamid + "/reorder/", {
appids: wl,
sessionid: g_sessionID
});

9) Done! Refresh and see the result 😀

I sorted my wishlist by most wishlisted games according to barter.vg:
https://store.steampowered.com/wishlist/profiles/76561198042965266/#sort=order

TIP: You can find a list of the most wishlisted games here: https://barter.vg/browse
Sort it most wislist and I recommend limiting it to 50 results.
Of course, you can also check out the other filter. It's quite extended.

5 years ago*

Comment has been collapsed.

View attached image.
5 years ago
Permalink

Comment has been collapsed.

Sign in through Steam to add a comment.