Is there any way to share localstorage with multiple browsers?
For example, I set localStorage.setItem("lang", "pt");
in Chrome, however, I would like this value to be available in Firefox and other browsers that support LocalStorage.
OBJECTIVE: My goal with this is to make a way for my system to understand the language the client chooses and which I have saved in the localstorage and retrieve at other times in other browsers.
Is there any way?