¿Puedes ver una lista de todas las pestañas abiertas en Safari?

6

A menudo tengo abiertas entre 150 y 200 pestañas en Safari en todo momento porque aquí es donde me gusta mantener todo mi trabajo actual. Obviamente, todas las pestañas abiertas nunca se muestran al mismo tiempo cuando hay tantas ...

Me pregunto si una lista de todas las pestañas abiertas actualmente está disponible en Safari.

    
pregunta MicroMachine 19.09.2015 - 12:41

3 respuestas

6

No creo que haya una lista de pestañas disponibles, sin embargo, hay una descripción general de las pestañas en Safari si haces clic en

  

Ver > Mostrar todas las pestañas

El atajo de teclado es Shift+Command+\

Que te mostrará todas tus pestañas, agrupadas por el sitio web en el que están.

O si tiene compatibilidad con pellizcar para hacer zoom, puede alejarse y saltará automáticamente a esta vista.

    
respondido por el jroschen 19.09.2015 - 17:42
4

Aquí hay un AppleScript que obtendrá el nombre de todas las pestañas en todas las ventanas de Safari y las mostrará en un documento de TextEdit no guardado.

Puede guardar esto como un script simple y acceder a él desde el menú Script en la barra de menús si lo habilita en las Preferencias del Editor de Script. O como una aplicación y se puede colocar en el Dock.

tell application "Safari"
    set windowCount to number of windows
    set docText to ""
    repeat with x from 1 to windowCount
        set tabcount to number of tabs in window x
        repeat with y from 1 to tabcount
            set tabName to name of tab y of window x
            set docText to docText & tabName & linefeed as string
        end repeat
    end repeat
end tell
tell application "TextEdit"
    activate
    make new document
    set the text of the front document to docText
end tell

El código fuente anterior se modificó desde Generar una lista de pestañas abiertas de Safari con AppleScript .

    
respondido por el user3439894 19.09.2015 - 16:23
1

Una pequeña modificación a [user3439894] [1] AppleScript para obtener también la URL de la pestaña y guardarla en el archivo de texto resultante.

tell application "Safari"
set windowCount to number of windows
set docText to ""
repeat with x from 1 to windowCount
    set tabcount to number of tabs in window x
    repeat with y from 1 to tabcount
        set tabName to name of tab y of window x
        set theURL to URL of tab y of window x
        set docText to docText & tabName & space & theURL & linefeed as string
    end repeat
end repeat
end tell
tell application "TextEdit"
    activate
    make new document
    set the text of the front document to docText
end tell
    
respondido por el Kysh 30.08.2018 - 13:18

Lea otras preguntas en las etiquetas