Install Steam
login
|
language
简体中文 (Simplified Chinese)
繁體中文 (Traditional Chinese)
日本語 (Japanese)
한국어 (Korean)
ไทย (Thai)
Български (Bulgarian)
Čeština (Czech)
Dansk (Danish)
Deutsch (German)
Español - España (Spanish - Spain)
Español - Latinoamérica (Spanish - Latin America)
Ελληνικά (Greek)
Français (French)
Italiano (Italian)
Bahasa Indonesia (Indonesian)
Magyar (Hungarian)
Nederlands (Dutch)
Norsk (Norwegian)
Polski (Polish)
Português (Portuguese - Portugal)
Português - Brasil (Portuguese - Brazil)
Română (Romanian)
Русский (Russian)
Suomi (Finnish)
Svenska (Swedish)
Türkçe (Turkish)
Tiếng Việt (Vietnamese)
Українська (Ukrainian)
Report a translation problem
https://store.steampowered.com/account/licenses/
Thx for the tip
For example, I have licenses like "Humble Indie Bundle 6 Beat the Average" which don't mention any game name at all (I think they stopped doing that, though... for years I've only gotten individual keys as bundles), and every once in a while I come across a game that I own, but I can't find out WHY I'm owning it (because I've yet to find a way to look at an actual game/DLC, and get to my license for it).
console.log(text);
console.log(text);[/code]
I use Mozilla FireFox and when I open the browser console to paste this code, however, I don't see any way to do so besides in "filter output," which doesn't do anything.
Here's a Excel formula to remove the 'h' and 'm' from the playtime column, assuming it's the F column:
Worked for me, 399.1 hours.
P.S. It doesn't exactly match what steamdb reports at the top of the page because of rounding, but 398.7 vs 399.1 is not too different.
Look at the top right of the steam client.
Click the button that contains your profile picture and name + wallet balance.
Choose "Account details"
On the page that opens, there are two links at the top right.
* View purchase history
* View licenses and product key activations
Go to the All Games tab in your profile, open the console and copy and paste the code below.
Note: the list loads dynamically, so you first need to scroll all the way to the bottom to force the page to load the full game list.
var games = Array.from(document.getElementsByClassName("gameslistitems_GameName_22awl"));
var text = '';
games.forEach(a => text += ("\n" + a.innerHTML));
console.log(text);
Thanks! I'll have to try this evening. Will this list ALL of my games, including the free ones and those that say "Profile Features Limited"?
Now here's some help to make this easier for the next person like me who doesn't know about web consoles:
1. Open your browser. Can't be firefox, because it doesn't let you paste into console, and looking it up, looks like a big pain to enable. I used Microsoft Edge.
2.Open your browser to the page mentioned. To get there, go to steam main page. At the top, third heading after store and community is your profile name. Hover over it. Click on Games. Then click "All Games".
3.Press ctrl+shift+j to open the console.
4. Type in "allow pasting" and press enter.
5.Type Alsowik's code and press enter. Your list of games should appear.
6.Right click anywhere on the text of your games. The whole block should be selected (backgrounded blue) and a context menu appears. Click "save as". It will save as a .log file, but you can open it in notepad.
Hope that helped, cheers!