如何在 Chrome 扩展程序中禁用同源策略?

发布于 2024-11-08 23:15:51 字数 168 浏览 0 评论 0原文

也许有一些设置可以在扩展上下文中禁用此功能。由于我正在开发一个扩展,所以我自己有责任不射中自己的目标。在开发浏览器扩展时,摆弄这个完全不合理的安全问题是非常令人沮丧的。

我不想通过全局禁用它来使整个浏览器变得不安全。仅适用于在manifest.json 的“content_scripts”部分中设置的脚本

Maybe are there some settings to disable this in extension context. Since I'm developing an extension it should be my own responsibility to not shoot my own goal. It is very frustrating to fiddle with this security thing that is totally out of reason when developing browser extensions.

I don't want to make whole browser insecure by disabling it globally. just for the scripts that are set in "content_scripts" section in manifest.json

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

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

发布评论

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

评论(1

笑脸一如从前 2024-11-15 23:15:52

您的 manifest.json 文件应包含您要在权限中使用的域:

"permissions": [
    "http://*.domain.com/"
]

Your manifest.json file should have the domain you're looking to use in the permissions:

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