DiverseAndRemote.com
DiverseAndRemote.com

Reputation: 19888

Share cookies between electron and chrome?

Is it possible to share cookies between an electron app and chrome?

When running an example electron app with example.com I'm setting a cookie using:

document.cookie = 
    'testCookie=test; expires=Fri, 6 Aug 2021 20:47:11 UTC; path=/; domain=.example.com'

I was expecting that when I navigate to example.com in chrome to see that my cookie was set. Again, is it possible to share cookies between electron and chrome?

Upvotes: 3

Views: 1909

Answers (1)

Ana Betts
Ana Betts

Reputation: 74654

This is not possible, sorry. Electron uses its own profile.

Upvotes: 4

Related Questions