chabala
3/19/2014 - 10:27 PM

Re-enable right-click & add Download links to thumbnail pages on PhotoReflect pages.

Re-enable right-click & add Download links to thumbnail pages on PhotoReflect pages.

/* 

Copy the single line of code below, then add it as a new bookmark to your web browser of choice:

javascript:(function(){document.body.appendChild(document.createElement('script')).src='http://gist.githubusercontent.com/dcpesses/9652778/raw';})();

Then browse to the thumbnails of the album, click on that bookmark, and...enjoy!

*/
document.oncontextmenu=document.body.oncontextmenu = new Function("return true");
$('.thumbgrid').each(function(i){
    var id = $(this).closest('a').attr('href').match(new RegExp("i=(.+?)&", "i")).shift();
    $(this).closest('td').append('<a href="/web/bin/prpv.dll?cmd=photo&s=-2&'+id+'p=" class="dl">&darr; Download</a>');
});