Maybe try steamdb, use the extension, go to sales and check the followed checkbox and adjust the filters accordingly so it shows any possible game. Then once you find them, you can go to their respective steamdb page and unfollow there. My only guess.
Pretty sure they're removed games so they wont show up on the steam page anymore, so no way to unfollow from there I believe or figure out which they are.
Comment has been collapsed.
steamdb do show my followed games, they must know my list. However I didn't find the followed checkbox there :(
https://blob.keylol.com/forum/202312/10/155228hxr7sw5xv9r86cxs.png?a=a
Comment has been collapsed.
My pal edited a series of codes, just need to stay at https://steamcommunity.com/id/XXX/followedgames, use console by F12, paste the codes, find all and delete there games with 1-click.
Issue solved, thank you
var show = [];
document.querySelectorAll('div.followed').forEach(node => show.push(parseInt(node.getAttribute('data-appid'))));
fetch('https://store.steampowered.com/dynamicstore/userdata/', {credentials: "include"}).then(res => res.json()).then(res => {
res.rgFollowedApps.forEach(appid => {
if (!show.includes(appid)) {
console.log(appid);
fetch(https://steamcommunity.com/app/${appid}/stopfollowing
, {method: "POST", credentials: "include", body: sessionid=${g_sessionID}
, headers: {"Content-Type": "application/x-www-form-urlencoded"}});
}
});
});
console.log('finish!');
Comment has been collapsed.
304 Comments - Last post 12 minutes ago by Mitsukuni
20 Comments - Last post 18 minutes ago by IronKnightAquila
80 Comments - Last post 27 minutes ago by Asteria94
591 Comments - Last post 50 minutes ago by th4
13 Comments - Last post 1 hour ago by Vasharal
69 Comments - Last post 2 hours ago by Reidor
16 Comments - Last post 2 hours ago by Sooth
16,765 Comments - Last post 5 minutes ago by MjrPITA
33 Comments - Last post 18 minutes ago by mathisgreat
153 Comments - Last post 40 minutes ago by Fitz10024
1,855 Comments - Last post 44 minutes ago by reigifts
699 Comments - Last post 48 minutes ago by bitsandcrafts
191 Comments - Last post 1 hour ago by EinAnderer
451 Comments - Last post 1 hour ago by httrenard
As the title says, it shows 364 followed games in my account, however, there are only 361 in followed games page, there are 3 games maybe was hidden or something. How'd I find them and delete it from my follow list.
Pictures I have no idea how to upload
https://blob.keylol.com/forum/202312/10/151316fczxae6dme49glve.png?a=a
https://blob.keylol.com/forum/202312/10/151140wfdtfrlhfuffl16r.png?a=a
Comment has been collapsed.