2

As I see in comments of this page , I could not understand that if chrome supports IndexedDB really.

I'm going to write an userscript for chrome/opera/firefox, and decided to not use localstorage, I just wanna try IndexedDB instead of localstorage, but before start to write script, I have to know that

Which versions of chrome/opera/firefox support IndexedDb?

Thanks.

Okan Kocyigit
  • 13,203
  • 18
  • 70
  • 129

3 Answers3

11

Can I Use has the best summary available.

Which versions of chrome/opera/firefox support IndexedDb?

Summary of browsers with full support.

Chrome: Version 11 onward

Opera: Version 15 onward

Firefox: Version 4 onward

For good measure, IE: Version 10 onward

ebpa
  • 1,171
  • 1
  • 12
  • 31
buley
  • 28,032
  • 17
  • 85
  • 106
1

According to https://developer.mozilla.org/en/IndexedDB, the asynchronous API is supported on Chrome version 12 and Firefox 4.0.

Garrett Vlieger
  • 9,354
  • 4
  • 32
  • 44
1

http://caniuse.com/#search=indexeddb

Also useful for all the other HTML5 features

Michael
  • 11
  • 1