Skip to content

Instantly share code, notes, and snippets.

@mryellow
Created February 6, 2017 23:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mryellow/e4352664c4bc1fafd9932018b087ca90 to your computer and use it in GitHub Desktop.
Save mryellow/e4352664c4bc1fafd9932018b087ca90 to your computer and use it in GitHub Desktop.
Delete indexedDB databases bookmarklet
javascript:indexedDB.webkitGetDatabaseNames().onsuccess = function (sender) { for (var x in sender.target.result) { console.log('Delete: ' + x); indexedDB.deleteDatabase(sender.target.result[x]); } }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment