Epic Export can export your list of games from Epic Games in a nice HTML table.
I tested it on Linux only, but should work on other platforms too.
Setup
- Install curl, if you don't have it already.
Usage
- Log in to epicgames.com
- Open the browser Developer tools by F12 or Ctrl+Shift+i or equivalent.
- Open the Network tab on top.
- Navigate the browser to https://www.epicgames.com/account/connections
- Switch to the "APPS" tab.
- In the Developer tools Network tab, seach for "authorized-apps" and click on it.
- Copy the contents to a file, eg. exported.txt
- Use that filename with path below in .
- Call
On Linux or Mac:
epic-export -i <exported> -o <output>
On Windows:
epic-export.exe -i <exported> -o <output>
It will run through the list of exported games, and search for them.
- Exact match is stored without prompt.
- Otherwise it will show a list of matches with some extra options.
- You can open the URL on the right to check if you have the game "In Library". Pick it if you're sure about it.
- You can ask for logo search. It will initiate a Google Images search by the game logo, and add those at the end of the list.
- You can use the game name without the link.
- You can skip the game if it was discontinued.
- You can type in the game URL by hand of a custom Google Search, maybe based on some text in the logo.
The output will be an html file that shows your games in a table, that you can share with others.
Example output looks like: https://vendelin8.github.io/epic-export/
Run from code
Make sure to Install Go, if you don't have it already. Then
go run . -i <exported> -o <output>
OR
go build .
./epic-export -i <exported> -o <output>
Contribute
Feel free to raise an issue or try and build it for other platforms.