É possível no Safari (OSX) abrir vários hiperlinks / selecionados de uma só vez?

1

Estou procurando uma extensão capaz de abrir vários hiperlinks de uma só vez nas guias.

Eu não quero configurar o Safari para abrir em abas qualquer hiperlink clicado.
Não quero selecionar um ou vários hiperlinks e abrir todas as páginas de uma só vez.

O mesmo comportamento de: link

Thx!

    
por fro_oo 22.09.2011 / 15:02

1 resposta

0

Tente isso como um bookmarklet:

javascript:(function(){var n_to_open,dl,dll,i; function linkIsSafe(u) { if (u.substr(0,7)=='mailto:') return false; if (u.substr(0,11)=='javascript:') return false; return true; } 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); } } })();
    
por 09.04.2012 / 03:11