AppleScript per rinominare la scheda Safari

1

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
    
posta Kevin 09.12.2018 - 11:30
fonte

1 risposta

3

Trovato la soluzione utilizzando JavaScript:

tell application "Safari"
    do JavaScript "document.title = 'Hello!';" in tab 1 of window 1
end tell
    
risposta data 09.12.2018 - 11:59
fonte

Leggi altre domande sui tag