Skip to content

Instantly share code, notes, and snippets.

@sendya
Last active June 2, 2017 07:44
Show Gist options
  • Save sendya/bed498386261b911ac86e2bcc8c320d1 to your computer and use it in GitHub Desktop.
Save sendya/bed498386261b911ac86e2bcc8c320d1 to your computer and use it in GitHub Desktop.
steaminfo: Get current user appid
/**
* 获取 https://steamdb.info/calculator/ 你的steamid /
* 你所拥有的游戏 appid
*/
var appids = '';
$("#table-apps tbody .app").each(function() {
appids += $(this).data("appid") + ',';
});
console.log(appids);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment