使用命令行开关启动 Chromium 无效

Launch Chromium with command line switches has no effect

我是 运行 macOS 10.15.3 上的 Chromium 85。

我正在尝试使用 Chromium 提供的各种 command line switches 中的一些,其中 none 似乎有任何效果。例如

./Chromium --ignore-gpu-blacklist

当它启动并转到 chrome://flags 页面时,设置尚未启用:

我已经在多个版本的 Chromium 以及 Windows 上进行了尝试,结果相同。我似乎无法启用它们中的任何一个。

我确实在 this page 上注意到它说

Note that if you look at chrome://flags to see if the command line option is active, the state might not be accurately reflected. Check chrome://version for the complete command line used in the current instance.

所以也许它正在工作,只是没有办法验证它?检查 chrome://version 页面并不足以判断功能是否已成功启用。它只是回显您传递给命令行的内容。

如您所述,chrome://flags 并未反映实际状态。它仅显示通过该页面启用的标志。如果您提供额外的标志,该页面不会显示它们已启用,但它们仍然会产生影响。

试试

./Chromium --show-overdraw-feedback

并查看标志页面。它不会显示为已启用,但您可以清楚地看到所有叠加层。

所以你可以假定你的原件

./Chromium --ignore-gpu-blacklist

可能是正确的并且有效。