Firebase in a chrome extension
Adding firebase/firestore to chrome extension
based on stackoverflow Add Cloud firestore library to chrome extension, content_scripts
in chrome extension manifest file manifest.json
add firebase-app.js
(https://www.gstatic.com/firebasejs/7.5.0/firebase-app.js
) and firebase-firestore.js
(https://www.gstatic.com/firebasejs/7.5.0/firebase-firestore.js
) as follows
As well as
then in your extension code you can just initialise firebase as usual eg
Last updated