Jul
23rd
Wed
23rd
Useful bookmarklet – open links within pasted text
This one can be useful if you need to open bunch of URLs that can be within other piece of text (a chat log or whatever). Just add this to your bookmarks:
javascript:var l=prompt('Enter list of links:');if(l){m=l.match(/https?:\/\/[^\s]+/gi);for (var i=0;i<m.length;i++) window.open(m[i],"_blank");}
Safari users, this might come in handy for you.