Hay una opción en Keyboard Maestro para renombrar cualquier pestaña en safari con el nombre que quieras
Estoy tratando de hacer lo mismo usando AppleScript pero ¿es esto posible?
No tengo nada hasta ahora, 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