this post was submitted on 18 Mar 2024
32 points (88.1% liked)

Firefox

20391 readers
150 users here now

/c/firefox

A place to discuss the news and latest developments on the open-source browser Firefox.


Rules

1. Adhere to the instance rules

2. Be kind to one another

3. Communicate in a civil manner


Reporting

If you would like to bring an issue to the moderators attention, please use the "Create Report" feature on the offending comment or post and it will be reviewed as time allows.


founded 5 years ago
MODERATORS
 

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.

you are viewing a single comment's thread
view the rest of the comments
[โ€“] Malix@sopuli.xyz 2 points 1 year ago* (last edited 1 year ago) (12 children)

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.