>> |
Anonymous
For the lazy Opera users. Adds a direct link to the big image. (Copy-paste,sava as something.js,put in somedir,go to Tools > Preferences > Advanced > Content > JavaScript options,select somedir)
// ==UserScript== // @include http://store.playboy.com/* // @exclude * // ==/UserScript== document.addEventListener('load',function(e){ var fldiv=document.getElementById("variationsnippet"); var prod=document.getElementById("pid"); var newaddr="http://s7d2.scene7.com/is/image/Playboy/"+prod.value+"?wid=2000&hei=2500 "; var myshit=document.createElement("div"); fldiv.appendChild(myshit); myshit.innerHTML="<p><font bgcolor=#FFFFFF color=#FFFF00><a href="+newaddr+">Biggus imagus</a></font></p>";
|