我有一个 chrome 扩展,可以拉下使用 HTTPS 的 Hacker News 的 RSS 提要。自从我升级到最新版本的 chrome 扩展清单后,我就无法让它工作。ajax 请求失败,没有任何解释。
我 99% 确定发出请求的 javascript 代码是正确的,所以我认为这是权限问题。
这是我清单中的权限和内容安全策略部分:
"permissions": [
"tabs",
"https://news.ycombinator.com/",
"http://news.ycombinator.com/",
"notifications"
],
"content_security_policy": "script-src 'self' 'unsafe-eval' https://news.ycombinator.com; object-src 'self' 'unsafe-eval' https://news.ycombinator.com"
有任何想法吗?
谢谢!
编辑:
这是 Github 存储库的链接:https ://github.com/adamalbrecht/hacker-news-for-chrome/