在 Chrome 擴充功能中使用 Firebase 驗證

本文件說明如何使用 Firebase Authentication 登入 Chrome 使用 Manifest V3 的擴充功能。

Firebase Authentication 提供多種從使用者登入的驗證方法 和一些 Chrome 擴充功能相比,有些需要更精力的開發。

如要在 Manifest V3 Chrome 擴充功能中使用下列方法, firebase/auth/web-extension 匯入這些項目

  • 使用電子郵件地址和密碼登入 (createUserWithEmailAndPasswordsignInWithEmailAndPassword)
  • 使用電子郵件連結 (sendSignInLinkToEmailisSignInWithEmailLinksignInWithEmailLink) 登入
  • 匿名登入 (signInAnonymously)
  • 使用自訂驗證系統 (signInWithCustomToken) 登入
  • 單獨處理供應商登入作業,然後使用 signInWithCredential

系統也支援下列登入方式,但還需要進行一些額外設定:

  • 透過彈出式視窗登入 (signInWithPopuplinkWithPopupreauthenticateWithPopup)
  • 重新導向至登入頁面 (signInWithRedirectlinkWithRedirectreauthenticateWithRedirect) 以便登入
  • 使用 reCAPTCHA 電話號碼登入
  • 使用 reCAPTCHA 進行簡訊多重驗證
  • reCAPTCHA Enterprise 防護

如要在 Manifest V3 Chrome 擴充功能中使用這些方法,您必須使用 螢幕外文件

使用 firebase/auth/web-extension 進入點

從「firebase/auth/web-extension」匯入後,使用者透過 與網頁應用程式類似的 Chrome 擴充功能。

只有 Web SDK v10.8.0 版支援 firebase/auth/web-extension 以上。

import { getAuth, signInWithEmailAndPassword } from 'firebase/auth/web-extension';

const auth = getAuth();
signInWithEmailAndPassword(auth, email, password)
  .then((userCredential) => {
    // Signed in
    const user = userCredential.user;
    // ...
  })
  .catch((error) => {
    const errorCode = error.code;
    const errorMessage = error.message;
  });

使用螢幕外文件

部分驗證方法,例如 signInWithPopuplinkWithPopupreauthenticateWithPopup,與 Chrome 擴充功能直接不相容, 因為需要從擴充功能套件外部載入程式碼。 從 Manifest V3 開始不適用,並會遭到 是延伸的平台如要解決這個問題,您可以在 使用螢幕外文件建立 iframe。 在螢幕外文件中,執行一般驗證流程並代理 並將結果傳回擴充功能。

本指南使用 signInWithPopup 做為範例,但概念相同 適用於其他驗證方法

事前準備

使用這項技巧時,您必須設定可在網路上找到的網頁。 您必須在 iframe 中載入任何主機都能支援這項功能,包括 Firebase 代管。 建立含有下列內容的網站:

<!DOCTYPE html>
<html>
  <head>
    <title>signInWithPopup</title>
    <script src="signInWithPopup.js"></script>
  </head>
  <body><h1>signInWithPopup</h1></body>
</html>

聯合登入

如果您使用聯合登入,例如使用 Google、Apple、SAML 或 OIDC,您必須將 Chrome 擴充功能 ID 加入授權清單中 網域:

  1. Firebase 控制台中開啟專案。
  2. 在「驗證」部分中,開啟「設定」頁面。
  3. 將 URI 新增至授權網域清單,如下所示:
    chrome-extension://CHROME_EXTENSION_ID

在 Chrome 擴充功能的資訊清單檔案中,請確認您已新增下列內容: content_security_policy 許可清單的網址:

  • https://apis.google.com
  • https://www.gstatic.com
  • https://www.googleapis.com
  • https://securetoken.googleapis.com

實作驗證機制

在您的 HTML 文件中,signInWithPopup.js 是處理 JavaScript 程式碼, 驗證。實作方法的方法有兩種: 直接支援的擴充功能:

  • 使用 firebase/auth,而不是 firebase/auth/web-extensionweb-extension 進入點適用於在擴充功能中執行的程式碼。雖然這個程式碼最終會在擴充功能 (在 iframe 中,位於螢幕外的文件) 中執行,但其執行的內容就是標準網頁。
  • 將驗證邏輯納入 postMessage 事件監聽器中,以代理驗證要求和回應。
import { signInWithPopup, GoogleAuthProvider, getAuth } from'firebase/auth';
import { initializeApp } from 'firebase/app';
import firebaseConfig from './firebaseConfig.js'

const app = initializeApp(firebaseConfig);
const auth = getAuth();

// This code runs inside of an iframe in the extension's offscreen document.
// This gives you a reference to the parent frame, i.e. the offscreen document.
// You will need this to assign the targetOrigin for postMessage.
const PARENT_FRAME = document.location.ancestorOrigins[0];

// This demo uses the Google auth provider, but any supported provider works.
// Make sure that you enable any provider you want to use in the Firebase Console.
// https://console.firebase.google.com/project/_/authentication/providers
const PROVIDER = new GoogleAuthProvider();

function sendResponse(result) {
  globalThis.parent.self.postMessage(JSON.stringify(result), PARENT_FRAME);
}

globalThis.addEventListener('message', function({data}) {
  if (data.initAuth) {
    // Opens the Google sign-in page in a popup, inside of an iframe in the
    // extension's offscreen document.
    // To centralize logic, all respones are forwarded to the parent frame,
    // which goes on to forward them to the extension's service worker.
    signInWithPopup(auth, PROVIDER)
      .then(sendResponse)
      .catch(sendResponse)
  }
});

建立 Chrome 擴充功能

網站上線後,你就可以在 Chrome 擴充功能中使用。

  1. offscreen 權限新增至 manifest.json 檔案:
  2.     {
          "name": "signInWithPopup Demo",
          "manifest_version" 3,
          "background": {
            "service_worker": "background.js"
          },
          "permissions": [
            "offscreen"
          ]
        }
        
  3. 撰寫畫面外文件。 在擴充功能套件中,這是最小的 HTML 檔案, 載入螢幕外文件 JavaScript 的邏輯:
  4.     <!DOCTYPE html>
        <script src="./offscreen.js"></script>
        
  5. 在擴充功能套件中加入 offscreen.js。它的作用是 公開網站 (在步驟 1 設定) 和額外資訊。
  6.     // This URL must point to the public site
        const _URL = 'https://example.com/signInWithPopupExample';
        const iframe = document.createElement('iframe');
        iframe.src = _URL;
        document.documentElement.appendChild(iframe);
        chrome.runtime.onMessage.addListener(handleChromeMessages);
    
        function handleChromeMessages(message, sender, sendResponse) {
          // Extensions may have an number of other reasons to send messages, so you
          // should filter out any that are not meant for the offscreen document.
          if (message.target !== 'offscreen') {
            return false;
          }
    
          function handleIframeMessage({data}) {
            try {
              if (data.startsWith('!_{')) {
                // Other parts of the Firebase library send messages using postMessage.
                // You don't care about them in this context, so return early.
                return;
              }
              data = JSON.parse(data);
              self.removeEventListener('message', handleIframeMessage);
    
              sendResponse(data);
            } catch (e) {
              console.log(`json parse failed - ${e.message}`);
            }
          }
    
          globalThis.addEventListener('message', handleIframeMessage, false);
    
          // Initialize the authentication flow in the iframed document. You must set the
          // second argument (targetOrigin) of the message in order for it to be successfully
          // delivered.
          iframe.contentWindow.postMessage({"initAuth": true}, new URL(_URL).origin);
          return true;
        }
        
  7. 透過 background.js Service Worker 設定畫面外文件。
  8.     const OFFSCREEN_DOCUMENT_PATH = '/offscreen.html';
    
        // A global promise to avoid concurrency issues
        let creatingOffscreenDocument;
    
        // Chrome only allows for a single offscreenDocument. This is a helper function
        // that returns a boolean indicating if a document is already active.
        async function hasDocument() {
          // Check all windows controlled by the service worker to see if one
          // of them is the offscreen document with the given path
          const matchedClients = await clients.matchAll();
          return matchedClients.some(
            (c) => c.url === chrome.runtime.getURL(OFFSCREEN_DOCUMENT_PATH)
          );
        }
    
        async function setupOffscreenDocument(path) {
          // If we do not have a document, we are already setup and can skip
          if (!(await hasDocument())) {
            // create offscreen document
            if (creating) {
              await creating;
            } else {
              creating = chrome.offscreen.createDocument({
                url: path,
                reasons: [
                    chrome.offscreen.Reason.DOM_SCRAPING
                ],
                justification: 'authentication'
              });
              await creating;
              creating = null;
            }
          }
        }
    
        async function closeOffscreenDocument() {
          if (!(await hasDocument())) {
            return;
          }
          await chrome.offscreen.closeDocument();
        }
    
        function getAuth() {
          return new Promise(async (resolve, reject) => {
            const auth = await chrome.runtime.sendMessage({
              type: 'firebase-auth',
              target: 'offscreen'
            });
            auth?.name !== 'FirebaseError' ? resolve(auth) : reject(auth);
          })
        }
    
        async function firebaseAuth() {
          await setupOffscreenDocument(OFFSCREEN_DOCUMENT_PATH);
    
          const auth = await getAuth()
            .then((auth) => {
              console.log('User Authenticated', auth);
              return auth;
            })
            .catch(err => {
              if (err.code === 'auth/operation-not-allowed') {
                console.error('You must enable an OAuth provider in the Firebase' +
                              ' console in order to use signInWithPopup. This sample' +
                              ' uses Google by default.');
              } else {
                console.error(err);
                return err;
              }
            })
            .finally(closeOffscreenDocument)
    
          return auth;
        }
        

    現在,當您在 Service Worker 中呼叫 firebaseAuth() 時, 文件外文文件,並將網站載入 iframe 中。該 iframe 會處理 而 Firebase 會執行標準驗證 流程解決或拒絕之後,驗證物件 系統會利用 文件。