When working in chrome, I utilized the window.indexedDB.databases()
method to retrieve all indexedDb names.
However, this same method does not seem to be functioning in firefox.
In an attempt to resolve this issue, I will explore alternative methods such as
window.indexedDB.webkitdatabases()
and window.indexedDB.mozwebkitdatabases()
.
Unfortunately, when attempting to implement these methods, I encountered the following error:
"window.indexedDB.databases() is not a function."
I have also tried utilizing the indexedDB interfaces such as IDBObjectStore, IDBDataBase, and others. Unfortunately, these also resulted in errors during implementation.
If anyone has any suggestions or proper methods for retrieving all indexedDB names, I would greatly appreciate it.