Come verificare che Chrome sia in esecuzione in modalità in incognito usando Applescript?

0

È possibile sapere se Chrome è in esecuzione in modalità di navigazione in 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

Inoltre, voglio che questo script continui a funzionare. Ciò significa che non appena l'utente apre Chrome in modalità in incognito, mostrerò l'avviso. In questo modo:

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 questo è l'approccio corretto?

P.S. Qualcuno può per favore chiudere la domanda qui @ link

    
posta Rakesh Juyal 13.11.2014 - 20:46
fonte

1 risposta

1

Puoi controllare la proprietà della modalità:

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
    
risposta data 13.11.2014 - 22:22
fonte

Leggi altre domande sui tag