Steam'i Yükleyin
giriş
|
dil
简体中文 (Basitleştirilmiş Çince)
繁體中文 (Geleneksel Çince)
日本語 (Japonca)
한국어 (Korece)
ไทย (Tayca)
Български (Bulgarca)
Čeština (Çekçe)
Dansk (Danca)
Deutsch (Almanca)
English (İngilizce)
Español - España (İspanyolca - İspanya)
Español - Latinoamérica (İspanyolca - Latin Amerika)
Ελληνικά (Yunanca)
Français (Fransızca)
Italiano (İtalyanca)
Bahasa Indonesia (Endonezce)
Magyar (Macarca)
Nederlands (Hollandaca)
Norsk (Norveççe)
Polski (Lehçe)
Português (Portekizce - Portekiz)
Português - Brasil (Portekizce - Brezilya)
Română (Rumence)
Русский (Rusça)
Suomi (Fince)
Svenska (İsveççe)
Tiếng Việt (Vietnamca)
Українська (Ukraynaca)
Bir çeviri sorunu bildirin
"Here is the real tip, it even works for GHOST items (empty wishlist but wishlist counter not showing zero)
If you know the name of the ghost games (you can import your wishlist on barter.vg to find out the names) then you just need to inspect element on your browser while being on any steam page (preferably your wishlist page to be sure) and execute this snippet of JS replacing --> 'appid' : 0, <-- with the ID of the game you want to remove, even if it doesn't display on your wishlist (happened to me with awesomenauts expansions).
Once you know the name of the game you can find the ID using SteamDB.
Code to execute to be found below :
$J.post( g_strWishlistBaseURL + 'remove/', {
'appid' : 0,
'sessionid' : g_sessionID
});
Example 1 with a problematic DLC : Awesomenauts - Overdrive Expansion · AppID: 425540
$J.post( g_strWishlistBaseURL + 'remove/', {
'appid' : 425540,
'sessionid' : g_sessionID
});
Example 2 : Awesomenauts - Starstorm Expansion · AppID: 256500
$J.post( g_strWishlistBaseURL + 'remove/', {
'appid' : 256500,
'sessionid' : g_sessionID
});
Hit F5 to refresh, done.
You can thank me even various decades later, internet is done for that. ♥♥♥♥ old threads locking."