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.
4 Comments - Last post 8 minutes ago by khayolin
2 Comments - Last post 33 minutes ago by ILLUSIVESNAKE95
2,921 Comments - Last post 38 minutes ago by LeChevalier88
34 Comments - Last post 44 minutes ago by Foxhack
11 Comments - Last post 2 hours ago by FritoleXx
17,098 Comments - Last post 2 hours ago by moronic
2 Comments - Last post 2 hours ago by AgainstAllOdds84
63 Comments - Last post 1 minute ago by DrTenma
55 Comments - Last post 1 minute ago by sylvain
240 Comments - Last post 6 minutes ago by jbondguy007
979 Comments - Last post 14 minutes ago by MarshallBanana0815
409 Comments - Last post 24 minutes ago by schmetti
191 Comments - Last post 31 minutes ago by Masayori
895 Comments - Last post 37 minutes ago by Shughes91
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.