È 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