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

5 months ago

Comment has been collapsed.

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.

5 months ago
Permalink

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

5 months ago
Permalink

Comment has been collapsed.

I do find one game which didn't show on my followed games page, since it was removed. I have no idea on how to unfollow it

5 months ago
Permalink

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!');

5 months ago
Permalink

Comment has been collapsed.

Closed 5 months ago by Hannasan.