09-21-2006, 04:52 PM
|
#2
|
Join Date: Jun 2005
Location: London UK
Posts: 3,739
|
This may not be exactly what you are looking for. It opens all the hyperlinks, but embeds them all on one page in frames. Take a look anyway, great for porn.
Create a bookmark and place this as the location:
Code:
javascript:(function(){var dims,dimarray,wid,hei,dimstring,x,i,z,url; function linkIsSafe(u) { if (u.substr(0,7)=='mailto:') return false; if (u.substr(0,11)=='javascript:') return false; return true; } function htmlEscape(s){s=s.replace(/&/g,'&');s=s.replace(/>/g,'>');s=s.replace(/</g,'<');return s;} dims = prompt('width, height for each frame', '760, 500'); if (dims!=null) { dimarray = dims.split(','); wid = parseInt(dimarray[0]); hei = parseInt(dimarray[1]); dimstring = 'width='+wid+' height='+hei; x = document.links; z = window.open().document; for (i = 0; i < x.length; ++i) { url = x[i].href; if(linkIsSafe(url)) { z.writeln('<p>' + x[i].innerHTML + ' (' + htmlEscape(url) + ')<br><iframe ' + dimstring + ' src="' + url.replace(/"/g, '"') + '">[broken iframe]</iframe></p>'); } } z.close(); } })();
Drag the bookmark onto your bookmark toolbar and press the button when you want all the hyperlinks opened.
|
|
|