我有一個Chrome擴展程序,用於下拉使用HTTPS的Hacker News的RSS源。自從我升級到Chrome擴展清單的最新版本以來,我無法實現它。沒有任何解釋ajax請求失敗。HTTPS來自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/
有沒有運氣?我面臨同樣的問題 – 2016-10-30 15:36:24