Sim! Finalmente, eles criaram uma extensão para o Safari 5!
Você pode obtê-lo aqui: Atualizar automaticamente para o Safari 5
Lembre-se, isso só funcionará com o Safari 5.
No Firefox existe um add-on chamado ReloadEvery que permite atualizar uma página em um determinado intervalo. Existe algo parecido com o Safari?
Sim! Finalmente, eles criaram uma extensão para o Safari 5!
Você pode obtê-lo aqui: Atualizar automaticamente para o Safari 5
Lembre-se, isso só funcionará com o Safari 5.
link
-- the applescript only calls attention to itself when the idle period is up
on idle
tell application "Safari"
--confirms your browser is the front application
activate
end tell
tell application "System Events"
tell process "Safari"
keystroke "r" using {command down}
end tell
end tell
--sets the idle period in seconds.
--i.e. safari will refresh every 10 seconds
return 10
end idle
Se o script for um pouco avançado demais para você (você comprou um Mac), tente PageReboot .
Documento selecionado quando o script é iniciado:
tell application "Safari"
set doc to document 1
repeat while true
tell doc to set URL to (get URL)
delay 10
end repeat
end tell
Todos os separadores:
tell application "Safari"
repeat while true
repeat with t in tabs of windows
tell t to set URL to (get URL)
end repeat
delay 10
end repeat
end tell
Tags firefox safari macos browser-addons