This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* | |
| GUIDE | |
| install the extension https://chromewebstore.google.com/detail/disable-content-security/ieelmcmcagommplceebfedjlakkhpden | |
| go to https://store.steampowered.com/ and activate the Browser extension | |
| Press F5 | |
| Open the Console by pressing F12 | |
| paste the Code in to it | |
| Press enter and wait | |
| */ |
This file has been truncated, but you can view the full file.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| //date 03.10.2024 go to api.steampowered.com/ISteamApps/GetAppList/v2 if you want to get all the new appids | |
| (function () { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| (function() { | |
| var wishlist = []; | |
| jQuery.ajax({ | |
| type: 'GET', | |
| url: '//api.steampowered.com/ISteamApps/GetAppList/v2', | |
| dataType: 'jsonp', | |
| success: function(result) { | |
| jQuery.each(result['applist']['apps'], function(key, value) { | |
| wishlist.push(value['appid']); |