I'm building a Chrome extension where I want to us...
# support-questions-legacy
d
I'm building a Chrome extension where I want to use my frontend to auth. Basically I'd use
chrome.runtime.sendMessage(myExtensionId, { /* payload */ })
, and the extension should then be able to setup Supertokens auth using this payload. What would be the payload I'd want to send here, and how would I use a JSON dump of this payload in e.g. the SuperTokensWrapper provider or similar to make the extension authed with said credentials? I want the extension to have the refresh token so that it can update its access token by itself
11 Views