nelle-observer/astro/public/scripts/fuckchrome.js

14 lines
368 B
JavaScript
Raw Normal View History

2024-08-17 13:23:43 -06:00
function redirect() {
2024-08-20 19:18:23 -06:00
const chromium = /Chrome|Chromium|OPR|Opera|Edge|UC|QQ|Brave/.test(
navigator.userAgent
);
2024-08-24 14:51:55 -06:00
if (!localStorage.getItem('disclaimerAccepted')) {
if (chromium && screen.width >= 699) {
window.location.replace("/bsod");
}
if (chromium && screen.width <= 699) {
window.location.replace("/mobile-warn");
2024-08-24 02:42:43 -06:00
}
}
2024-08-20 19:18:23 -06:00
}