Firebase allows users to change their email client side with
firebase.auth().currentUser.updateEmail("example@example.com")
Run Code Online (Sandbox Code Playgroud)
However, I would like to disable this feature entirely - obviously, I offer no way to access it on my app by default, but if an attacker managed to trick the user into install a Chrome extension or otherwise was able to access client credentials, I would always want it to fail if possible.
Is there anywhere on the Firebase auth console where I can change this functionality or …