Jun 3 2011

jquery bookmarklet – add jquery on every site you want

javascript:var s=document.createElement('script');s.setAttribute('src','http://jquery.com/src/jquery-latest.js');document.getElementsByTagName('body')[0].appendChild(s);


Jun 3 2011

ein wenig jquery

$("img[src*='picload'],img[src*='direct']").each(function(){ $( $("body").children()[0] ).before("<img src="+$(this).attr("src")+" width=50>");})

check for all imgs with picsload or direct in src and cop them right after body tag with width 50 and remove height value