-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathresetcookies.html
More file actions
46 lines (43 loc) · 3.72 KB
/
resetcookies.html
File metadata and controls
46 lines (43 loc) · 3.72 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate" />
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon" media="(prefers-color-scheme: dark)" />
<link rel="shortcut icon" href="favicon-dark.ico" type="image/x-icon" media="(prefers-color-scheme: light)" />
<title>How To Reset Cookies - Virtual Clicker</title>
<meta property="og:title" content="How To Reset Cookies - Virtual Clicker" />
<meta property="og:image" content="https://click.vssfalcons.com/banner-meta.png" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="How To Reset Cookies - Virtual Clicker" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link href="https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,400;0,700;1,400;1,700&display=swap"
rel="stylesheet" />
</head>
<body class="col">
<div id="clicker">
<svg xmlns="http://www.w3.org/2000/svg" height="3.5rem" viewBox="0 0 1024 1024" class="virtual-clicker-logo">
<path fill="currentColor"
d="M189.838,206.009C202.279,201.862 210.44,202.484 217.578,206.052C224.715,209.621 230.493,216.931 235.656,232.419C251.225,279.126 278.027,359.533 299.189,423.017C304.344,438.483 312.472,443.078 322.252,443.078C332.033,443.078 339.718,439.813 345.627,422.086C360.443,377.638 378.763,322.677 396.583,269.218C430.426,167.688 472.963,146.121 567.37,146.121C702.785,146.121 897.037,146.121 984.213,146.121C1007.19,146.121 1013.22,150.77 1018.88,158.617C1024.53,166.463 1025.91,177.048 1020.96,191.878C1003.43,244.493 978.676,318.741 965.135,359.363C958.535,379.162 942.92,390.595 922.051,390.561C867.547,390.472 734.987,390.238 660.22,390.117C626.461,390.062 609.299,402.41 598.623,434.437C585.437,473.995 567.7,527.206 553.255,570.541C547.69,587.236 549.36,603.931 557.708,615.513C566.057,627.096 578.691,633.96 596.163,633.96C665.057,633.96 769.309,633.96 828.841,633.96C841.883,633.96 850.611,638.609 856.266,646.455C861.921,654.301 863.336,664.76 859.639,675.852C842.137,728.356 816.643,804.838 803.139,845.351C797.202,863.16 778.155,877.879 759.383,877.879C688.339,877.879 487.826,877.879 340.593,877.879C241.323,877.879 180.603,838.6 149.211,744.424C101.094,600.075 30.348,387.837 3.648,307.735C-1.509,292.265 -0.672,284.75 2.896,277.613C6.465,270.475 10.977,265.63 28.36,259.835C72.841,245.008 145.357,220.836 189.838,206.009Z" />
</svg>
<h1>How To Reset Cookies</h1>
<p>If website functionality suddenly breaks, you may want to force cookies to be deleted from your browser to fix any errors. This will reset the app to its default settings, prompt you to enter your seat code again, reset all settings, and clear your response history.</p>
<p>To clear your cookies specifically for this app:</p>
<ol>
<li>Click the lock icon <i class="bi bi-lock-fill"></i> at the top of the browser to the left of the URL.</li>
<li>Click "Cookies and site data", then <i class="bi bi-cookie"></i> "Cookies".</li>
<li>Select <p style="display: inline;" id="currentDomain">the current website domain</p> and click "Remove" to remove all cookies from the app.</li>
<li>Refresh the page to apply your changes.</li>
</ol>
</div>
<script src="src/main.js" type="module"></script>
<script>
document.addEventListener("DOMContentLoaded", () => {
document.getElementById('currentDomain').outerHTML = `<code style="display: inline;" id="currentDomain">${document.location.hostname}</code>`;
});
</script>
</body>
</html>