An update to @Justin De Pustin's answer - the normalized.jpg
file is no longer in the source code, at least not for pages I looked at. You can instead look for a file that ends in larger.jpg
, and replace that with normalized.jpg
, and you're good. For example:
I wrote a very basic script you can run from the JS console that will look for this file and pop it open in a new tab. You can save it as a "snippet" in the left panel in Chrome dev tools under "Sources" for handy access later.
$('img').each(function() {
if (this.src.indexOf('larger') !== -1) {
var normalized = this.src.replace('larger', 'normalized');
console.log('found', normalized);
window.open(normalized);
};
});
That page no longer exists. – fixer1234 – 2015-03-26T06:33:50.097
4I'm voting to close this question as off-topic because providing an answer violates the T and C of the website in question – Dave – 2017-12-12T05:53:36.223
1Looks like a Zoomify or OpenSeadragon tileset. You can check the sources e.g. in Chrome through the Developer Tools' Resources tab. – slhck – 2013-07-04T15:47:18.393
2
Telling you how would violate their terms: "...you must not (and must not assist or permit any third party to) download, reproduce, modify, create derivative works from, publicly perform, publicly display, rent, sell or distribute any Content located on (or provided in connection with) the Site..." link :)
– Ƭᴇcʜιᴇ007 – 2013-07-04T15:57:39.153