HBS
PD🧩 Plasmo Developers
•Created by HBS on 4/12/2024 in #👾extension
Extension rejected by Google due to RHC violation in Firebase Auth
There you go
20 replies
PD🧩 Plasmo Developers
•Created by HBS on 4/12/2024 in #👾extension
Extension rejected by Google due to RHC violation in Firebase Auth
In your node_modules search for RHC url(
..../recaptcha/enterprise.js
). To identify which other package is using this url20 replies
PD🧩 Plasmo Developers
•Created by HBS on 4/12/2024 in #👾extension
Extension rejected by Google due to RHC violation in Firebase Auth
this is to make sure that RHC reference is not in build and before we submit to Google we can doublecheck
20 replies
PD🧩 Plasmo Developers
•Created by HBS on 4/12/2024 in #👾extension
Extension rejected by Google due to RHC violation in Firebase Auth
No post process is required as long as you are only importing from
firebase/auth-web-extension
20 replies
PD🧩 Plasmo Developers
•Created by HBS on 4/12/2024 in #👾extension
Extension rejected by Google due to RHC violation in Firebase Auth
You mean UserCredentials interface?
In my case I had to import
User
type. I declared it locally for now. Hopefully types would be exported from firebase/auth/web-extensions
soon.20 replies
PD🧩 Plasmo Developers
•Created by HBS on 4/12/2024 in #👾extension
Extension rejected by Google due to RHC violation in Firebase Auth
In my case I was importing a user type from
firebase/auth
package and due to this I was getting references of RHC urls(recaptcha related) in my build. So I removed all imports from firebase/auth
20 replies
PD🧩 Plasmo Developers
•Created by HBS on 4/12/2024 in #👾extension
Extension rejected by Google due to RHC violation in Firebase Auth
After you build. Open your build folder and search for recaptcha related urls before you submit to google.
20 replies
PD🧩 Plasmo Developers
•Created by HBS on 4/12/2024 in #👾extension
Extension rejected by Google due to RHC violation in Firebase Auth
Make sure you import everything from
auth/web-extension
even you import any minor thing from firebase/auth
would result RHC code references20 replies
PD🧩 Plasmo Developers
•Created by HBS on 4/12/2024 in #👾extension
Extension rejected by Google due to RHC violation in Firebase Auth
Turned out I needed to use
firebase/auth/web-extension
and firebase JS package 10.8 onwards20 replies