Why would anyone want to read through all the databases on a browser storage? Why would anyone want to give access to databases to entities who dont know the db name? On top of it it allows the below method as well to get the names of all the object stores.
var objectStoreNames = db.objectStoreNames;
Why can’t indexDB remove this method and allow retrieval of data only when the db name is known to the entity that is trying to read the database?
1