如何禁用 Google Chrome 暗黑模式?

如何禁用 Google Chrome 暗黑模式?

如何禁用 Google Chrome 暗模式,但仍继续使用操作系统的暗模式外观?

到目前为止,Google Chrome 仍然是白色的 Material Design。现在我打开它时,得到的是深色主题。

如果我将系统外观更改为白色,我可以将其再次变为白色,但我喜欢操作系统的深色主题。

我搜索过了chrome://flags,什么都没找到。我也查看了 Chrome 中的设置,也没找到任何东西。

知道它为什么突然改变以及如何将其改回来吗?

Chrome 版本:73.0.3683.86(官方版本)(64 位)

macOS 版本:10.14.3 (18D109)

暗黑模式

在此处输入图片描述

灯光模式

在此处输入图片描述

答案1

使用命令

defaults write com.google.Chrome NSRequiresAquaSystemAppearance -bool Yes

在终端运行这个就可以了。

禁用其他应用程序的暗模式

如果您想禁用其他应用程序的暗模式,您需要先获取 Bundle Identifier。

osascript -e 'id of app "<App Name>"'

这将获取 Bundle Identifier。使用以下命令禁用它的暗黑模式。

defaults write <Bundle Identifier> NSRequiresAquaSystemAppearance -bool Yes

如果你想再次启用它的暗模式

defaults delete <Bundle Identifier> NSRequiresAquaSystemAppearance

会做。

答案2

如果您想在使用暗系统模式设置时禁用 Google Chrome 暗模式,那么您可以非常轻松地做到这一点。

苹果系统在终端中运行:

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/

相关内容