Questions tagged [globalstorage]

globalStorage is a deprecated browser storage API, similar to localStorage

3 questions
5
votes
1 answer

What browsers support globalStorage?

What browser (versions) support globalStorage? This is a deprecated JavaScript client-side browser storage API. I see http://caniuse.com/namevalue-storage , but it does not explicitly mention globalStorage.
Matthew Flaschen
  • 278,309
  • 50
  • 514
  • 539
4
votes
1 answer

Storing text Globally on a chrome extension, and Reusing it Onload

I am trying to create a simple clipboard extension. I have 6 textarea objects that are used as copy/paste platforms. I want these objects to 'remember the text' for future uses (even after the extension is closed). I this is how the textarea object…
user11814338
0
votes
0 answers

Get a item on LocalStorage after login on angular not working?

Cheers ! I am trying to retrieve a list stored on localstorage after login in Angular, i am storing the data calling a method inside globalstorage, but i realized that i can't retrieve it right away, after setting the item on localstorage during…