AppleScript para cambiar el nombre de la pestaña Safari

1

Hay una opción en Keyboard Maestro para cambiar el nombre de cualquier pestaña en safari con el nombre que quieras

Intento hacer lo mismo con AppleScript, pero ¿es esto posible?

Hasta ahora no tengo nada, supongo que JavaScript sería la forma de hacerlo

tell application "Safari"
    tell front window to make new tab at after first tab with properties {URL:myLink}
    -- need to rename tab here
    tell front window to make new tab at after second tab with properties {URL:myLink}
    -- need to rename tab here
    tell front window to make new tab at after third tab with properties {URL:myLink}
    -- need to rename tab here
end tell
    
pregunta Kevin 09.12.2018 - 11:30

1 respuesta

3

Encontré la solución usando JavaScript:

tell application "Safari"
    do JavaScript "document.title = 'Hello!';" in tab 1 of window 1
end tell
    
respondido por el Kevin 09.12.2018 - 11:59

Lea otras preguntas en las etiquetas