Chrome 不允许向允许的域发出 Ajax 请求

发布于 2024-12-27 05:16:50 字数 957 浏览 0 评论 0原文

我正在创建我的第一个 Chrome 扩展程序,一个相对简单的扩展程序,带有一些 ajax 调用。

我的清单非常简单:

{
    "name": "Read It Now",
    "version": "0.12",
    "description": "Read it now.",
    "permissions": [
                    "https://readitlaterlist.com"
                   ],
  "app": {
      "launch": {
          "local_path": "index.html"
      }
  }
}

然后我使用 jQuery 从 URL 中获取一些简单的数据,例如:

https://readitlaterlist.com/v2/get?state=unread&count=10&apikey=xxx&username=yyy&password=zzz

但是,Chrome 仍然拒绝它:

XMLHttpRequest 无法加载 https://readitlaterlist.com /v2/get?state=unread&count=10&apikey=xxx&用户名=yyy&密码=zzz。 来源 chrome-extension://cdfeahailioembamnjnikbiemengfgpp 不是 由 Access-Control-Allow-Origin 允许。

I'm creating my first Chrome extension, a relatively simple one with some ajax calls.

My manifest is pretty simple:

{
    "name": "Read It Now",
    "version": "0.12",
    "description": "Read it now.",
    "permissions": [
                    "https://readitlaterlist.com"
                   ],
  "app": {
      "launch": {
          "local_path": "index.html"
      }
  }
}

I'm then using jQuery to fetch some simple data from a URL like:

https://readitlaterlist.com/v2/get?state=unread&count=10&apikey=xxx&username=yyy&password=zzz

However, Chrome still rejects it:

XMLHttpRequest cannot load
https://readitlaterlist.com/v2/get?state=unread&count=10&apikey=xxx&username=yyy&password=zzz.
Origin chrome-extension://cdfeahailioembamnjnikbiemengfgpp is not
allowed by Access-Control-Allow-Origin.

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

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

发布评论

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

评论(1

爱的十字路口 2025-01-03 05:16:50

您必须在网址匹配模式中包含该路径。 "https://readitlaterlist.com/*" 应该可以解决您的问题。

You have to include the path in your URL match pattern. "https://readitlaterlist.com/*" should fix your problem.

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