Ist es in Safari (OSX) möglich, mehrere / ausgewählte Hyperlinks gleichzeitig zu öffnen?

1445
fro_oo

Ich bin auf der Suche nach einer Erweiterung, die mehrere Hyperlinks gleichzeitig in Registerkarten öffnen kann.

Ich möchte Safari nicht so konfigurieren, dass in Hyperlinks ein Hyperlink geöffnet wird.
Ich möchte einen oder mehrere Hyperlinks auswählen und alle Seiten gleichzeitig öffnen.

Gleiches Verhalten wie: https://addons.mozilla.org/en-US/firefox/addon/multi-links/

Vielen Dank!

1

1 Antwort auf die Frage

0
user127280

Versuchen Sie es als Bookmarklet:

javascript:(function() n_to_open = 0; dl = document.links; dll = dl.length; if (window.getSelection && window.getSelection().containsNode) { /* mozilla */ for(i=0; i<dll; ++i) { if (window.getSelection().containsNode(dl[i], true) && linkIsSafe(dl[i].href)) ++n_to_open; } if (n_to_open && confirm('Open ' + n_to_open + ' selected links in new windows?')) { for(i=0; i<dll; ++i) if (window.getSelection().containsNode(dl[i], true) && linkIsSafe(dl[i].href)) window.open(dl[i].href); } } /* /mozilla */ if (!n_to_open) { /*ie, or mozilla with no links selected: this section matches open_all_links, except for the alert text */ for(i = 0; i < dll; ++i) { if (linkIsSafe(dl[i].href)) ++n_to_open; } if (!n_to_open) alert ('no links'); else { if (confirm('No links selected. Open ' + n_to_open + ' links in new windows?')) for (i = 0; i < dll; ++i) if (linkIsSafe(dl[i].href)) window.open(dl[i].href); } } })(); 
Könnten Sie erklären, was das bedeutet oder woher Sie den Code erhalten haben? sblair vor 12 Jahren 1