我有這個簡單的Chrome擴展程序,我嘗試添加火力,但由於某種原因,我得到:如何讓firebase 3使用Chrome擴展工作?
chrome-extension://apis.google.com/js/api.js?onload=__iframefcb195969
Failed to load resource: net::ERR_FAILED
這裏是代碼示例:https://github.com/patrioticcow/testint_chrome
火力文檔https://firebase.google.com/docs/
任何想法?
我相信你需要實際包含到白名單中的火力地堡的Chrome擴展它在[content_scripts](https://developer.chrome.com/extensions/content_scripts#registration) – aug
下的'manifest.json'中已經試過 – Patrioticcow
您的擴展中包含的'firebase.js'腳本包含一些對' // apis.google.com/JS/client.js'。協議沒有被指定,因此它調用了不存在的'chrome-extension:// apis.google.com/js/client.js'。您可以從CDN加載'firebase.js',以便它自動使用'https',或者您可以嘗試在這些調用中手動修改'firebase.js'的副本以包含'https:'(其中只有2個)。我能夠通過這種方式擺脫錯誤,但是您的擴展仍然無法使用。我不瞭解Firebase,因此我無法進一步幫助。 –