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

20 lines
530 B
JavaScript
Raw Normal View History

2024-08-17 13:23:43 -06:00
function redirect() {
const chromium = /Chrome|Chromium|OPR|Opera|Edge|UC|QQ/.test(
2024-08-20 19:18:23 -06:00
navigator.userAgent
);
if (navigator.brave) {
window.location.replace("https://www.youtube.com/watch?v=dQw4w9WgXcQ")
}
if (!navigator.brave) {
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 14:51:55 -06:00
}
2024-08-24 02:42:43 -06:00
}
2024-08-20 19:18:23 -06:00
}