Skip to content

Instantly share code, notes, and snippets.

@gylns
Created June 8, 2016 04:44
Show Gist options
  • Save gylns/6c0827960dc3bf41fbd66400ad0b81f8 to your computer and use it in GitHub Desktop.
Save gylns/6c0827960dc3bf41fbd66400ad0b81f8 to your computer and use it in GitHub Desktop.
var lt = document.getElementsByClassName("floatLeft");
for (var it of lt)
{
var link = it.lastElementChild.href;
var bkn = /bkn=([^&]*)&/.exec(link)[1];
var fn = /=([^.]*)\.pdf/.exec(link)[1];
it.lastElementChild.href= "/ebooks/"+bkn+"/"+fn+".pdf?bkn="+bkn+"&pdfType=chapter";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment