Browser Web o estensione per spostare più schede tra finestre in un'unica azione

3

In Safari, vorrei poter selezionare più schede contemporaneamente e spostarle tutte in una finestra aperta o nuova. Alla ricerca di un'estensione (o magia invocazione Safari) che può fare questo , trovo no soluzioni praticabili .

Dato che Safari non ha questa funzionalità, c'è un browser su OS X che fa un lavoro migliore di questo, fuori dalla scatola o con un'estensione.

    
posta Clay Bridges 11.02.2014 - 19:21
fonte

2 risposte

4

Potresti eseguire uno script come questo in AppleScript Editor:

tell application "Safari"
    set w to window 1
    set namelist to name of tabs of window 1
    repeat with i from 1 to (count namelist)
        set item i of namelist to (i & " " & (item i of namelist)) as text
    end repeat
    set answer to choose from list namelist with multiple selections allowed
    if answer is false then return
    make new document
    repeat with i in (reverse of answer)
        move tab ((word 1 of i) as integer) of w to beginning of tabs of window 1
    end repeat
    delete tab -1 of window 1
end tell

Sposta la scheda corrente e tutte le schede a destra di essa in una nuova finestra:

tell application "Safari"
    set l to tabs of window 1 where index ≥ (get index of current tab of window 1)
    make new document
    repeat with t in (reverse of l)
        move t to beginning of tabs of window 1
    end repeat
    delete tab -1 of window 1
end tell

Entrambi gli script ricaricano comunque ogni scheda.

Normalmente copio solo gli URL delle schede come testo:

set text item delimiters to linefeed
tell application "Safari" to URL of tabs of window 1
set the clipboard to result as text

Posso quindi ad esempio copiare parte delle righe ed eseguire open $(pbpaste) .

    
risposta data 13.02.2014 - 03:51
fonte
0

Google Chrome lo supporta immediatamente. Fate clic tenendo premuto Maiusc per selezionare più schede sequenziali (o cmd-clic per selezionare uno --- cmd + maiusc + clic) e trascinatele per creare una nuova finestra.

L'unico svantaggio è che non sembra funzionare in modalità a schermo intero. Questo post menziona un'estensione "Keyboard Detach / Reattach Tab" che aggiunge tale funzionalità.

    
risposta data 28.01.2015 - 21:09
fonte

Leggi altre domande sui tag