问题标签 [google-chrome-flags]

For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.

0 投票
0 回答
355 浏览

google-chrome - Chrome 扩展开发 - 使用自 chrome 版本 88 以来不推荐使用的自签名证书标志访问 localhost https,还有什么替代方案?

我开发了一个公共 chrome 扩展程序,它连接到本地游戏以在网站上显示来自游戏的信息。游戏托管带有自签名证书的本地 https 端口。我无法控制游戏——这是他们允许外部工具与游戏交流的方法。在 chrome 版本 87 上,所有用户所要做的就是启用标志 chrome://flags/#allow-insecure-localhost 并且扩展程序将起作用。在 chrome 版本 88 中,他们已删除此标志,用户可以暂时使用 chrome://flags/#temporary-unexpire-flags-m87 以便能够使用版本 87 中的标志。此选项可能无法使用两个 chrome 版本现在。

我们应该怎么做?有没有办法让用户(单击一下)信任游戏的自签名证书?

编辑:Chrome 已将 #allow-insecure-localhost 标志恢复到版本 88,因此问题不再相关。

0 投票
0 回答
241 浏览

google-chrome - 禁用功能:Chrome 标志中的默认 cookie 相同的站点

我想通过将这两个标志都设置为“禁用”来保留浏览器中 cookie 的旧行为:

  • chrome://flags/#same-site-by-default-cookies
  • chrome://flags/#cookies-without-same-site-must-be-secure

根据 chrome 最新更新,此禁用功能不支持。

2021 年 3 月 18 日:从 Chrome 91 开始,标记 #same-site-by-default-cookies 和 #cookies-without-same-site-must-be-secure 已从 chrome://flags 中删除,因为行为是现在默认启用。在 Chrome 94 中,命令行标志 --disable-features=SameSiteByDefaultCookies, CookiesWithoutSameSiteMustBeSecure 将被删除。

请在最新版本的 Chrome 中提出解决方法。

谢谢