Skip to content

Instantly share code, notes, and snippets.

@paul
Created October 23, 2010 21:37
Show Gist options
  • Save paul/642727 to your computer and use it in GitHub Desktop.
Save paul/642727 to your computer and use it in GitHub Desktop.
Download everything you've bought on GOG.com
// Paste this into firebug
$("div.sh_o_i_row[onclick^='window.top.location']").each(function() {
var string = String(this.onclick);
href = string.match(/http:[^"]+/)[0];
$(this).append("<a href=" + href + "/>");
});
// Then use downthemall to download everything on that page, filter with "/en/download"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment