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
var totalItems;
var completedItems;
resetQueue();
function resetQueue() {
//Perform initial request
jQuery.get("https://steamhost.cn/dynamicstore/userdata/", {t: new Date().getTime()}, function(data) {
totalItems = data.rgIgnoredApps.length;
completedItems = 0;
if (totalItems == 0) {
alert("There are no items in your Not Interested list.");
return;
} else {
var approval = confirm("About to remove " + totalItems + " games from your Not Interested list, proceed?");
}
if (!approval) {
return;
}
for (i = 0; i < totalItems; i++) {
jQuery.post("https://steamhost.cn/recommended/ignorerecommendation/", {sessionid: g_sessionID, appid: data.rgIgnoredApps, remove: 1}, function() {
completedItems++;
console.log(completedItems + "/" + totalItems + " items removed");
if (completedItems === totalItems) {
alert("All items cleared from Not Interested list.");
}
}).fail(function() {
console.error("Request failed, your Steam session id is probably incorrect/invalid, reload the page and try again");
});
}
}, "json").fail(function() {
console.error("There was an error retrieving your Discovery Queue");
});
}
Yeah, that's the code you pasted in. Just hit the enter key after you've pasted it to run it.