答案1
使用命令
defaults write com.google.Chrome NSRequiresAquaSystemAppearance -bool Yes
在終端機中運行這個就可以了。
禁用其他應用程式的深色模式
如果您想要停用其他應用程式的暗模式,您需要先取得捆綁包識別碼。
osascript -e 'id of app "<App Name>"'
這將獲得捆綁包標識符。使用以下命令禁用它的暗模式。
defaults write <Bundle Identifier> NSRequiresAquaSystemAppearance -bool Yes
如果您想再次啟用深色模式
defaults delete <Bundle Identifier> NSRequiresAquaSystemAppearance
會做。
答案2
如果您想在使用深色系統模式設定時停用Google瀏覽器深色模式,那麼您可以非常輕鬆地做到這一點。
在蘋果系統在終端機中運作:
defaults write com.google.Chrome NSRequiresAquaSystemAppearance -bool YES
在視窗在快捷方式屬性中的目標中加入後綴
"C:\Program Files (x86)\Google\Chrome\Application\chrome.exe" --disable-features=DarkMode
來源https://www.techllog.com/2019/05/how-to-disable-chromes-dark-mode/