I've got dozens of databases created running code under file:// schema in Chrome. How can I remove them?
The usual place Settings - Cookies and sites doesn't list them :-(
I've got dozens of databases created running code under file:// schema in Chrome. How can I remove them?
The usual place Settings - Cookies and sites doesn't list them :-(
Not sure about IndexedDB, but the problem with WebSQL is that it doesn't support database removal.
In Chrome you can remove the database directly from the file system, the path to database folder is like C:\Users\User\AppData\Local\Google\Chrome\User Data\Default\databases\file__0
. Just remove this folder(s).
More answers here: How to delete a database in WebSQL programmatically?
You can delete the Indexeddb database with javascript command. For instance to delete an indexeddb named dbtest
type in the chrome console:
indexedDB.deleteDatabase('_pouch_dbtest')
You can check on the ressource tab of the dev tools if it worked with the Refresh Indexeddb
option:
For WebSQL, I think it's not that simple (see that SO question)