add warning message to not paste in dev console

This commit is contained in:
Mystikfluu
2022-06-16 16:15:46 +02:00
parent 58734901b1
commit 1b0a8fddfc
13 changed files with 24 additions and 2 deletions
+10
View File
@@ -0,0 +1,10 @@
const warn_messages = [
["%cDo not paste any text in here","background: red; color: yellow; font-size: x-large"],
["Pasting anything in here may give others access to your account.",""]
]
function warnmessage() {
for (let message of warn_messages) {
console.log(message[0],message[1]);
}
}
setInterval(warnmessage,3000)