2
1
Fork 0
mayvaneday/MirrorKiller.js
2023-04-25 15:39:34 -05:00

12 lines
283 B
JavaScript
Executable file

/*
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");
}