I was inspecting stuff, as you do, and came across this interesting thing on facebook.
View Full Image
I understand that is completely do-able with something similar to this:
var cssRule = "color: rgb(249, 162, 34);" + "font-size: 60px;" + "font-weight: bold;" + "text-shadow: 1px 1px 5px rgb(249, 162, 34);" + "filter: dropshadow(color=rgb(249, 162, 34), offx=1, offy=1);"; console.log("%cHello World", cssRule);
Source
My main question is, How do they stop the showing of the file.js:line_numer that you always get on the right hand side in console?
With the above code, you would see this: View Full Image
Do you notice the red circle? But in facebooks example, they don't display that information. I've looked through the Web.Console API on Mozilla (Link), so does anybody possibly know how to exclude that specific peice of information?
To disable Javascript console, we need to throw an exception in the get accessor by checking if the property attached by chrome developer tool exists. With this script above, user won't be allowed to enter Javascript in the console. It also blocks auto-complete in console too. Thank you friends!
Just go to Facebook and open up the developer tools, type one character into the console, and this warning pops up. No matter what you put in, it will not get executed.
The console. warn() method is used to write a warning message in the console. So open the console to display the output (warning message).
You just have to async/defer the console.log
call, e.g.
setTimeout(console.log.bind(console, '%cFoo', 'color: #FF00FF;'), 0);
Even though I joined the party late but I think this will do!
var cssRule = "color: rgb(249, 162, 34);" + "font-size: 30px;" + "font-weight: bold;" + "text-shadow: 1px 1px 5px rgb(249, 162, 34);" + "filter: dropshadow(color=rgb(249, 162, 34), offx=1, offy=1);" setTimeout(console.log.bind(console, "%cHello World", cssRule), 0);
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With