How to delete IndexedDBs in Google Chrome? I've performed "Clear browsing data" and nothing happened. There is still bunch of IndexedDB from different domains... All other data has been removed.
In Developer Tools is no option to delete IndexedDB.
According to: http://code.google.com/p/chromium/issues/detail?id=116372 You will have the option to clear indexedDB (and other client side storage options like: localstorage etc') soon...
According to http://code.google.com/p/chromium/issues/detail?id=64050, IndexedDB directories don't get deleted if there are open connections to them. Have you tried shutting down the browser, waiting until all processes are gone, and then using "clear browsing data"?
If you were still accessing IndexedDB when trying to clear history then the database won't be deleted cause it's already in use. In that case you need to close the browser first and then try to clear history again.
Alternatively you can delete all IndexedDB databases manually from:
Windows C:\Users\{UserName}\AppData\Local\Google\Chrome\User Data\Default\IndexedDB
Linux: /home/{username}/.config/google-chrome/IndexedDB
来源:https://stackoverflow.com/questions/12125281/no-way-to-delete-indexeddb-under-google-chrome