I noticed that SameSite cookies are being deprecated early next year by chrome. How do y'all do auth? Right now I just set the cookie on my domain with sameSite set as `None`, then allow requests from the origin `chrome-extension://<ID>` however it seems like this will break. One thing I really liked about this method is that I could use "magic links" where I can send the user an email with a link and when they got to my api domain, set the cookie there and they'd be authenticated in my chrome extension
Seems like in general this wouldn't be possible starting January and the only idea I can think of is using chrome's storage to store the auth token.