Created
April 13, 2023 21:15
-
-
Save ramazansancar/90f381a2a04b1dc843ab0eb18ec5b8bc to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* CONSOLE MESSAGE */ | |
var consoleCopyrightStyle = [ | |
"margin: 16px 0", | |
"border-radius: 10px" | |
].join(";"); | |
var consoleWarningHeaderStyle = [ | |
"color: #ff0000", | |
"font-size: 32px", | |
"font-weight: 600", | |
"margin: 8px 0" | |
].join(";"); | |
var consoleWarningContentStyle = [ | |
"background-color: #ff0000", | |
"color: #ffffff", | |
"padding: 20px", | |
"border-radius: 10px" | |
].join(";"); | |
console.log( | |
"%cDUR!"+ | |
"%cBu alan geliştiricilere özel bir tarayıcı özelliğidir. Birisi size buraya bir şey kopyalayıp yapıştırmanızı söylerse, bu bir aldatmacadır ve sitenizdeki hesabınıza erişmesine izin verir. Lütfen buraya başkasının verdiği bir kodu girmeyiniz!"+ | |
`%cTelif Hakkı © ${new Date().getFullYear()} RS`, | |
consoleWarningHeaderStyle, | |
consoleWarningContentStyle, | |
consoleCopyrightStyle | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment