Chrome 扩展弹出窗口中的 Firebase 身份验证

Firebase authentication in Chrome Extension popup

我正在尝试获取身份验证 (email/password) 以在 Chrome 扩展程序中工作。如果我将我的身份验证代码放在后台脚本中,我似乎工作得很好。但是我似乎无法让它作为浏览器动作脚本工作。

我使用以下代码作为扩展的基础:https://github.com/firebase/firebase-chrome-extension

我把browser_action.js改成了:

Firebase.enableLogging(true);
var f = new Firebase('https://myapp.firebaseio.com/');

f.authWithPassword({    
    email    : "a@b.cd",
    password : "1234"
}, function(error, authData) {
    if (error) {
        alert("Login Failed!", error);
} else {
    alert("Authenticated successfully with payload:", authData);
}
});

我保持现有的 browser_action.html 不变:

<!doctype html>


<style type="text/css">
    #mainPopup {
        padding: 10px;
        height: 200px;
        width: 400px;
        font-family: Helvetica, Ubuntu, Arial, sans-serif;
    }
    h1 {
        font-size: 2em;
    }
</style>

<div id="mainPopup">
<h1>Firebase test!</h1>
<p>Clicks: <span id="contents"></span></p>
</div>

<script type="text/javascript" src="https://cdn.firebase.com/v0/firebase.js"></script>
<script src="browser_action.js"></script>

当我加载扩展并单击图标时,它在控制台中出现以下错误:

Uncaught TypeError: f.authWithPassword is not a function

如果我将 firebase 代码和身份验证代码移动到 background.js 文件中,它会起作用,并会提醒我它已成功通过身份验证。

我做错了什么或者为什么这不可能?

那个示例 chrome 扩展已经 3 年没有更新了,所以它的 Firebase 版本已经过时了。将browser_action.html中的https://cdn.firebase.com/v0/firebase.js换成https://cdn.firebase.com/js/client/2.2.1/firebase.js,应该就能成功使用authWithPassword了。

对于自 2016 年 7 月以来遇到此问题的任何人,Firebase 更新了一组关于如何为 Chrome 扩展设置身份验证的说明(在他们的示例中,他们使用 Google 身份验证)。在遇到这个 post 之前,我跳过了一堆箍。希望能节省一些时间。 https://github.com/firebase/quickstart-js/tree/master/auth/chromextension