allow chrome users to exist (but not without annoyance)

This commit is contained in:
nelle 2024-08-24 02:17:40 -06:00
parent c11ffd41fc
commit c43c81c4fc
4 changed files with 12 additions and 6 deletions

View file

@ -1,5 +1,14 @@
function onload() {
redirect();
if (!localStorage.getItem('chromeAccepted')) {
redirect()
}
else {
return
}
}
acceptDisclaimer() {
sessionStorage.removeItem( 'chromeAccepted');
}
function redirect() {

View file

@ -21,9 +21,6 @@ function disableSGA() {
}
function toggleTheme() {
// Obtains an array of all <link>
// elements.
// Select your element using indexing.
if (!sessionStorage.getItem('sgaEnabled')) {
enableSGA()
}

View file

@ -14,7 +14,7 @@ import Layout from "../layouts/fuckchrome/bsod.astro";
</div>
<div class="error-text">
<br>
<p>For more information about this issue and possible fixes, visit <a href="/nochrome" style="color=#ffffff;">https://nelle.observer/nochrome</a></p>
<p>For more information about this issue and possible fixes, and to never be redirected again, visit <a href="/nochrome" style="color=#ffffff;" onclick="acceptDisclaimer()">https://nelle.observer/nochrome</a></p>
<p>If you contact me about this, please give me this error:</p>
<p>Stop Code: EW_CHROME_YUCK</p>
</div>

View file

@ -8,6 +8,6 @@ import Layout from "../layouts/fuckchrome/mobile-warn.astro";
<p>The website on <span style="font-weight: bold;">nelle.observer</span> is scared of chromium-based browsers, which yours seems to be of.</p>
<p style="font-size: smaller;">NET::EW_CHROME_YUCK</p>
<br>
<a href="/nochrome">Proceed to information (unsafe)</a>
<a href="/nochrome" onclick="acceptDisclaimer()">Proceed to information (unsafe) and to never be redirected again</a>
</main>
</Layout>