Esiste un'opzione in Keyboard Maestro per rinominare qualsiasi scheda in Safari con il nome desiderato
Sto provando a fare lo stesso usando AppleScript ma è anche possibile?
Non ho nulla finora, immagino che JavaScript sarebbe il modo per farlo
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