No way to delete IndexedDB under Google Chrome

这一生的挚爱 提交于 2019-12-10 11:30:40

问题


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.


回答1:


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...




回答2:


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"?




回答3:


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

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!