19 lines
530 B
JavaScript
19 lines
530 B
JavaScript
function redirect() {
|
|
const chromium = /Chrome|Chromium|OPR|Opera|Edge|UC|QQ/.test(
|
|
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");
|
|
}
|
|
}
|
|
}
|
|
}
|