You are on page 1of 1

I would convert the plain text to html. Then open all links in tabs with firefox.

And finally "bookmark all tabs".

Paste this line in the location field in ff and run it to open all links on a page
in tabs (just make sure firefox is set to open links in tabs instead of new
windows):
CODE: SELECT ALL
javascript:var n = document.links; for (var i = 0; i < n.length; i++)
window.open(n[i]);

If it's a lot of links you would probably want to automate the conversion to
html... If every domain is listed on it's own line you could use "pspad editor" or
similar and run a search and replace with regular expressions. Something like:
CODE: SELECT ALL
Search: ^.*$
Replace: <a href="$&">$&</a><br>

You might also like