Panic Button

This button quickly opens a neutral site and tries to clear some local data for this tab where possible.

It cannot fully erase your browser history, synced history, device records, or network logs, but it’s here in case you need to leave quickly, quietly, or without extra steps.

You do not have to explain why you used it.

(function () { const SAFE_URL = ‘https://www.wikipedia.org/’; document.addEventListener(‘click’, function (event) { const target = event.target.closest(‘.panic-exit-button’); if (!target) return; event.preventDefault(); try { if (window.sessionStorage) { window.sessionStorage.clear(); } } catch (e) {} try { if (window.localStorage) { window.localStorage.clear(); } } catch (e) {} try { if (window.location && typeof window.location.replace === ‘function’) { window.location.replace(SAFE_URL); } else { window.location.href = SAFE_URL; } } catch (e) { window.location.href = SAFE_URL; } }); })();
Is this your new site? Log in to activate admin features and dismiss this message
Log In