1 votos

¿Cómo comprobar si Chrome se ejecuta en modo incógnito utilizando Applescript?

¿Es posible averiguar si el Chrome está funcionando en modo 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

Además, quiero que este scriptse siga ejecutando. Es decir, en cuanto el usuario abra Chrome en modo incógnito mostraré la 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

¿Es éste el enfoque correcto?

P.D. ¿Puede alguien cerrar la pregunta aquí @ https://stackoverflow.com/questions/26916480/how-to-check-is-chrome-is-running-in-incognito-mode-using-applescript

1voto

adayzdone Puntos 1258

Puedes comprobar la propiedad mode:

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

AppleAyuda.com

AppleAyuda es una comunidad de usuarios de los productos de Apple en la que puedes resolver tus problemas y dudas.
Puedes consultar las preguntas de otros usuarios, hacer tus propias preguntas o resolver las de los demás.

Powered by:

X