Skip to content

Instantly share code, notes, and snippets.

@lxfly2000
Created August 4, 2022 02:41
Show Gist options
  • Save lxfly2000/a427ce4382350badad9c4e9a40ab2d0d to your computer and use it in GitHub Desktop.
Save lxfly2000/a427ce4382350badad9c4e9a40ab2d0d to your computer and use it in GitHub Desktop.
找出steam愿望单中下架的游戏
//在愿望单页面上执行以下代码即可得到AppID,然后在SteamDB上找就行了
for(var id of g_rgWishlistData){
if(g_Wishlist.rgAllApps.indexOf(id.appid.toString())==-1){
console.log(id);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment