1
0
Fork 0

New poem: Yuzu

This commit is contained in:
Lethe Beltane 2023-04-25 15:39:34 -05:00
parent 94769dc920
commit 75561e6790
Signed by: lethe
GPG key ID: 21A3DA3DE29CB63C
19 changed files with 221 additions and 74 deletions

11
MirrorKiller.js Executable file
View file

@ -0,0 +1,11 @@
/*
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");
}