MirrorKiller.js 283 B

123456789101112
  1. /*
  2. Script to block known unauthorized mirrors
  3. written by Vane Vander <https://mayvaneday.org>
  4. released under MIT License
  5. */
  6. let text = window.location.href;
  7. let nun = text.includes("nun7gbqj6tro");
  8. if ((nun === true)) {
  9. window.location.replace("https://theannoyingsite.com");
  10. }