Not sure of anytghing that will do quite what you want but here are two lists for "everything" on Steam that is tagged as a demo.
https://completionist.me/steam/apps?display=grid&order=desc&sort=created&search=&type=demo
https://steamdb.info/search/?a=app&q=&type=3&category=0
Comment has been collapsed.
Yes, but the sorting/filtering options may help you get closer to what you're looking for since none of the other options provided seem to have done you any good.
Comment has been collapsed.
Run this script (F12 > console) over at your wishlist page:
var demos = {};
var n = Object.keys(g_rgAppInfo).length;
var storeurl = "https://store.steampowered.com/app/";
Object.keys(g_rgAppInfo).forEach(appid => {
jQuery.get(storeurl + appid, data => {
if (jQuery("[href*='steam://install/']", data).length) {
demos[appid] = jQuery("[href*='steam://install/']", data).attr("href").split("/")[3].split("'")[0].split(",")[0];
}
}).always(() => {
n--;
if (n <= 0) {
console.log(Object.entries(demos).map(e => storeurl + e[0] + " has demo steam://install/" + e[1]).join("\n"));
}
});
});
Enjoy!
I love doing these (small) scripts. If you need a job done, I do paid work too, please contact me!
Comment has been collapsed.
307 Comments - Last post 5 minutes ago by MaryVirgin
1,829 Comments - Last post 6 minutes ago by OwieczkaDollyv21
406 Comments - Last post 8 minutes ago by HiTBiT
69 Comments - Last post 36 minutes ago by ChrisKutcher
979 Comments - Last post 43 minutes ago by MeguminShiro
5 Comments - Last post 57 minutes ago by sensualshakti
18 Comments - Last post 1 hour ago by fr0zenX
11,500 Comments - Last post 3 minutes ago by xXxYEET
24 Comments - Last post 13 minutes ago by Vampus
65 Comments - Last post 22 minutes ago by Devirk
810 Comments - Last post 26 minutes ago by SteamKeyGiveaway
220 Comments - Last post 32 minutes ago by ThePonz
17,913 Comments - Last post 1 hour ago by fasderrally
8,944 Comments - Last post 1 hour ago by hbarkas
Comment has been collapsed.