Llego un poco tarde a la fiesta, pero hoy también he tenido la necesidad.
Lo que descubrí es que puedes establecer el document.title de tu pestaña usando JavaScript. Al cambiar de pestaña, el nombre cambiado se tomará al volver a la pestaña.
En mi ejemplo sólo he necesitado una pestaña, así que mi planteamiento es el siguiente:
tell application "Safari"
-- get the window I want to change the name of
set playerwin to first window whose name starts with "RVR"
-- Prepend "Web Player - " to the document title
do JavaScript "
document.title = 'Web Player - " & (name of playerwin) & "';
" in document 1
-- open & close an empty tab
tell playerwin
set current tab to (make new tab)
close current tab
end tell
-- get the properties. Name should be changed now
return properties of playerwin
end tell
0 votos
Posible duplicado de ¿Es posible dar un nombre personalizado a una ventana del navegador en OS X?
0 votos
¿Por qué quieres hacerlo?