¿Cómo verificar si Chrome se está ejecutando en modo incógnito usando Applescript?

0

¿Es posible averiguar si Chrome se está ejecutando en modo de incógnito?

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

También quiero que esta secuencia de comandos se siga ejecutando. Eso significa que tan pronto como el usuario abra Chrome en modo de incógnito, mostraré alerta. Así:

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

Si este es el enfoque correcto?

P.S. ¿Puede alguien cerrar la pregunta aquí @ enlace

    
pregunta Rakesh Juyal 13.11.2014 - 20:46

1 respuesta

1

Puedes verificar la propiedad de modo:

tell application "Google Chrome"
    if exists window 1 then
        if mode of window 1 = "incognito" then
            -- insert your code here
        end if
    end if
end tell
    
respondido por el adayzdone 13.11.2014 - 22:22

Lea otras preguntas en las etiquetas