Force Navegação Privada

0

Existe uma maneira de forçar a navegação privada no Safari 5 em um Mac?

    
por Martha Cooper 16.02.2011 / 20:44

1 resposta

0

Você pode tentar isso, funciona no Safari 4.

Um script é necessário,

tell application "Safari"
    activate
end tell

tell application "System Events"
    tell process "Safari"
    tell menu bar 1
    tell menu bar item "Safari"
    tell menu "Safari"
    click menu item "Private Browsing"
    end tell
    end tell
    end tell
    end tell
end tell

você pode seguir este link para mais informações: link

    
por 16.02.2011 / 21:12