É possível descobrir se o Chrome está sendo executado no modo de navegação anônima?
if application "Google Chrome" is running then
tell application "Finder" to display dialog "Chrome is running"
// --> some condition here to check if it is in incognito ?
tell application "Finder" to display dialog "Chrome is running in INCOGNITO mode"
end if
Além disso, quero que esse script continue em execução. Isso significa que, assim que o usuário abrir o Chrome no modo de navegação anônima, mostrarei um alerta. Como isso:
set chromeRunning to false
repeat until application "Google Chrome" is running
if not chromeRunning then
tell application "Finder" to display dialog "Chrome is started in INCOGNITO mode"
set chromeRunning to true
#may be quit the script now..
end if
delay 10
end repeat
Se esta é a abordagem correta?
PS Alguém pode fechar a pergunta aqui @ https://stackoverflow.com/questions/26916480/how-to-check-is-chrome-is-running-in-incognito-mode-using-applescript
macos
applescript
google-chrome
Rakesh Juyal
fonte
fonte
Respostas:
Você pode verificar a propriedade mode:
fonte
can't make *mode of window 1* into type reference