mayvaneday/MirrorKiller.js
2025-04-30 15:46:57 -05:00

12 lines
285 B
JavaScript
Executable File

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