Reputation: 19888
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