I am working on an Electron app that needs to be able to retrieve localStorage on the default OS browser from my site. How can I achieve that? Are there any API's/Modules? I was thinking something like this:
var electron = require("electron");
var storage = electron.OSBrowser.storage;
But I am pretty sure that does not exist. Thanks. (FYI I am in the Renderer not the main process)