gpt4 book ai didi

google-chrome - 如何在 Chrome 74+ 中禁用 CORB

转载 作者:行者123 更新时间:2023-12-04 12:39:24 29 4
gpt4 key购买 nike

我想调试 Chrome 74 中可能由 CORB 引起的本地开发环境问题。我想看看 - 当我关闭 CORB 时 - 问题是否消失。

根据 Google developer docs比如说

You can confirm if a problem is due to CORB by temporarily disabling it, by starting Chrome with the following command line flag: --disable-features=CrossSiteDocumentBlockingAlways,CrossSiteDocumentBlockingIfIsolating



但是,如果我跑
"C:\Program Files (x86)\Google\Chrome\Application\chrome.exe" --disable-features=CrossSiteDocumentBlockingAlways,CrossSiteDocumentBlockingIfIsolating --user-data-dir="C:/ChromeDevSession"

Chrome 仍会根据请求显示 CORB 警告和阻止。

最佳答案

如果您查看文档中提到的 feature tracking page您会找到指向 tracking bug 的链接.该错误中的最后一次提交实际上是指修订版,此 feature is enabled by default and is no more controlled from outside通过命令行(至少使用问题标志中提到的)。

但是添加了一段有趣的代码:

  // --disable-web-security also disables Cross-Origin Read Blocking (CORB).
if (base::CommandLine::ForCurrentProcess()->HasSwitch(
switches::kDisableWebSecurity)) {
params->is_corb_enabled = false;
return;
}

希望在 74 版本中它仍然存在。所以如果你同意所有的后果就加上 --disable-web-security反而。

顺便在 latest sources你不会再找到它了。因此,使用 never 版本的 Chrome ,您将无法禁用它。

关于google-chrome - 如何在 Chrome 74+ 中禁用 CORB,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57708833/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com