20
8
I have a list of URLs in a text file, for example,
http://url1
http://url2
http://url3
I wonder how to open them each in one tab in Firefox (or SeaMonkey), without the hassle of creating a new tab, copying into address bar and hitting return for each URL?
My OS is Ubuntu 10.10. Both command line and GUI solutions are welcome.
This is perfect. Is there anyway to add a slight delay, lets say 5 seconds between opening each tab? – DomainsFeatured – 2016-11-30T17:16:25.300
@DomainsFeatured Sure. You could use
setInterval
to iterate over the domains and cancel it once all of them have been processed. – Dennis – 2016-11-30T17:29:18.827Hey Dennis, could you post the code here please? http://stackoverflow.com/questions/40894481/how-to-add-delay-to-html-javascript-function I'm not sure how to do that. Would be so grateful!
– DomainsFeatured – 2016-11-30T17:29:57.610Awesome answer, I made a JSFiddle for anyone as lazy as I am - https://jsfiddle.net/y1dgezuL/
– Neil P – 2018-10-21T16:12:25.660Hah... I haven't thought 'bout that one! I usually do it with
firefox \
cat file.txt`` (as WakiMiko wrote). Anyway using your way will work on all OS. :D – tftd – 2012-02-02T16:39:15.3501Now this is what I call "for the win." +1 for platform independence. Would definitely accept this answer. Supported: SeaMonkey, FireFox, IE, Chrome, Safari, etc...Ubuntu, Windows, Mac, etc. – Matt – 2012-06-06T22:39:38.003
Technically chrome blocking as pop-ups. But since I need source and I'm running fiddler, you made my day. Thanks a done. – Jones – 2013-04-08T15:12:05.193