Which addon, will open multiple tabs, from the multiple URLs in my clipboard ?
There used to be an addon, "Open tabs from clipboard URLs" but I can't seem to find it anymore.
The best I find now is, an addon that opens a box, then you paste your URLs in it, then you press a button.
That's not what I want. I want a toolbar button, I press it, the tabs open.
So that I can opens large blocks of URLs.
Also, I would like another addon which opens large blocks of URLs but does not load them immediately.
I have LoadOnSelect3 for this, but the problem with that one, is that it opens special moz:// pages until you load the tab. And that breaks searching and filtering tabs because the tab title and URL are not the real ones.
However, even with 100s of them, you just need to jump into the address bar and type some letters of the tab's address and Firefox will offer you to switch to it.
I never have more than ten tabs open. With my bookmarks I just type like "bookstack" and I'm there. Seems like its the same though so to each their own.
Thats insane. But doesn't necessarily answer why you would need thousands of tabs actually open. It just sounds like so much effort to keep tabs open when you could just bookmark them and use a keyword to instantly go there when you need to.
You cant have an addon that open larg blocks of urls and doesn’t load them but does show its titles on each tab; If you are showing the title of the tab is because the page has been loaded at some point
I would like the browser to throttle the rate of tab openning, something like 1 per 2 second, and maybe waiting until no more than 10 that are currently loading.
Because when I try to open 100 tabs it chokes my system for about 5 minutes and sometimes even trigger the remote host's anti-ddos defence so that all the tabs end up broken and I have to reload them a second time.
But that's really the second point.
The first point is "Open tabs from clipboard URLs"
I did find something in the mean time.
It works, but it's a two step process, instead of a single click toolbar button like what I had previously.
Assuming you know what you're doing, maybe some script? At least on linux something like this seems to work:
#!/bin/bash
urls_file="${HOME}/path/to/url_list.txt";
sleep_time=1;
while read -r line;
do
firefox "${line}";
sleep ${sleep_time};
done < "${urls_file}";
edit: heh, tried to delete this as irrelevant, as I entirely missed the clipboard & requirement for a button IN firefox.. but it didn't really delete it seems. Oh well, leaving this in for laughs.
Anyhoo, if you need to speed up/throttle the link opening somehow, maybe add some incremental counter there and skip sleeping if counter < 10 or whatever.
On windows (where I am trapped), I can make a script read the clipboard (or even a script directly in my clipboard manager, ditto) but what I don't know is how to make firefox open URLs in a specific window.
could be firefox handles those internally, kinda seems like urls open up in the window which was last active. So.. I guess you could start the script by starting firefox with --new-instance or --new-window, and patiently wait until urls are open? I guess.