Czy można sprawdzić, czy Chrome działa w trybie incognito?
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
Chcę także, aby ten skrypt działał. Oznacza to, że gdy tylko użytkownik otworzy Chrome w trybie incognito, pokażę alert. Lubię to:
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
Jeśli to poprawne podejście?
P.S. Czy ktoś może zamknąć pytanie tutaj @ https://stackoverflow.com/questions/26916480/how-to-check-is-chrome-is-running-in-incognito-mode-using-applescript
macos
applescript
google-chrome
Rakesh Juyal
źródło
źródło
Odpowiedzi:
Możesz sprawdzić właściwość trybu:
źródło
can't make *mode of window 1* into type reference