由于我没有使用服务器,如何访问 Chrome 中的原始策略

发布于 2024-10-07 08:20:58 字数 50 浏览 5 评论 0原文

我想更改chrome中的origin策略,如何访问并修改它?

非常感谢

I want to change the origin policy in chrome, how can I access it and modify it?

Many thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

喜爱纠缠 2024-10-14 08:20:58

您是在谈论放宽 file:/// url 的同源策略吗?如果是这样,我强烈建议您在本地计算机上设置一个 Web 服务器并以这种方式进行开发。

也就是说,您可以使用以下命令行标志运行 Chrome: --allow-file-access-from-files 这将使所有 file:/// url 在同一源中运行。缺点:您下载并打开的任何 .html 页面都可能打开您系统上的任何文件,并在您不知情的情况下将其上传到某个服务器。所以如果你这样做的话,你需要更加小心。

除了 file:/// url 之外,您无法在 CORS 等 API 之外更改同源策略。

Are you talking about relaxing the same origin policy for file:/// urls? If so, I strongly recommend you set up a web server on your local machine and develop that way.

That said, you can run Chrome with this command line flag: --allow-file-access-from-files This will make all file:/// urls run in the same origin. The downside: any .html page you download and open could possibly open any file on your system and upload it to some server without you knowing. So you need to be more careful if you're doing this.

Besides file:/// urls you cannot change the same origin policy outside of APIs like CORS.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文