Hello Firebase Coders,
We are working on a Google Chrome extension and planning on using Firebase to save user data. We want to authenticate users and save their data on Firebase without asking users to login. Most likely, we can use anonymous login. My confusion is regarding reauthorizing the user when the session expires. Some specific questions ...
1. What information do we need to store to re-authorize the user?
2. How can we make the re-authorizing call?
3. What permissions do I need to set to make sure one chrome extension user cannot see other users' information? (by reconstructing the request)
4. Can the regular Firebase sync work?
5. Can I do all these processes in background, and not even load the page in the browser?
6. As the documentation say "Authentication requests to Firebase Simple Login are only permitted from domains you specify." Chrome extension doesn't have the domain url (at least I don't know about this). How can I permit the Firebase request from a google chrome extension?
Is there anything else I should know?