In chrome, I used window.indexedDB.databases() method to get all indexedDb names.
But that same method is not wokring in firefox.
I will also try window.indexedDB.databases() similar methods like window.indexedDB.webkitdatabases() & window.indexedDB.mozwebkitdatabases().
For the above methods implementation will get the following error.
window.indexedDB.databases() is not a function.
Also I will try to use the indexedDB interfaces like IDBObjectStore,IDBDataBase...etc. But there is no use. They also give error in its implementation.
So kindly give some proper method or suggestion to get all indexedDB names.
you have a method inside IDBFactory that give you the database list.
IDBFactory.databases A method that returns a list of all available databases, including their names and versions.
https://developer.mozilla.org/en-US/docs/Web/API/IDBFactory but it is was not actually implemented !! you can read more on that in firefox bug report
So the only way to get the database names is by using the Storage Inspector within the Firefox DevTools.