How do you delete the indexed databases stored on your computer in Firefox?

前端 未结 9 498
暖寄归人
暖寄归人 2021-02-03 10:13

In Opera you can simply type in opera:webdatabases in the address field and delete all the web SQL databases stored on your computer.

How do you do the sam

9条回答
  •  醉话见心
    2021-02-03 11:02

    I have found that running this code in console (Ctrl+Shift+K) is an easier solution:

    indexedDB.deleteDatabase('MyDatabaseName').onsuccess=(function(e){console.log("Delete OK");})
    

提交回复
热议问题