¿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