Skip to content

Instantly share code, notes, and snippets.

/*
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
*/
@justxanderscode
justxanderscode / addallgametowishlist.js
Last active January 15, 2025 11:12 — forked from Zexxx/addallgametowishlist.js
Non CSP Version of addallgametowishlist.js
This file has been truncated, but you can view the full file.
//date 03.10.2024 go to api.steampowered.com/ISteamApps/GetAppList/v2 if you want to get all the new appids
(function () {
(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']);