I have a react application with authentication managed by Auth0.
I want to create browser extensions with users sharing their sessions between the web app and the extension.
I successfully followed this guide and it works well for google chrome and firefox in development. However, the callback_uri
needs to be whitelisted in my Auth0 dashboard, and this is going to be a problem for firefox since uuid are non deterministic in firefox and change at every install, so the url moz-extensions://uuid
cannot be used as a callback_uri
I can’t seem to find a solution, any advice?