0
我正在嘗試編寫AppleScript,它會告訴您Safari的某個窗口是否處於私人模式。下面是Chrome瀏覽器中的AppleScript:在AppleScript中檢測Safari瀏覽器隱私
tell application "Google Chrome"
set incognitoIsRunning to the (count of (get every window whose mode is "incognito")) is greater than 0
end tell
if (incognitoIsRunning) then
return "-- PRIVATE MODE --"
end tell
查看隱私瀏覽菜單選項是否已被選中的舊解決方案不再有效。
這不再適用於Safari 11.0版本。 –