1
0
Fork 0
You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
283 B
JavaScript

/*
Script to block known unauthorized mirrors
written by Vane Vander <https://mayvaneday.org>
released under MIT License
*/
let text = window.location.href;
let nun = text.includes("nun7gbqj6tro");
if ((nun === true)) {
window.location.replace("https://theannoyingsite.com");
}