21 lines
440 B
HTML
21 lines
440 B
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<title>Clear Storage</title>
|
|
</head>
|
|
<body>
|
|
<h2>Clearing Storage...</h2>
|
|
<script>
|
|
// Clear localStorage
|
|
localStorage.clear();
|
|
|
|
// Clear IndexedDB
|
|
indexedDB.deleteDatabase("whattoplay");
|
|
|
|
document.write("<p>✓ localStorage cleared</p>");
|
|
document.write("<p>✓ IndexedDB deleted</p>");
|
|
document.write("<br><p>Close this tab and reload the app.</p>");
|
|
</script>
|
|
</body>
|
|
</html>
|