Created
April 28, 2019 16:55
-
-
Save kerminz/fa2c6d8ab625a95e4ee404b5ac143f10 to your computer and use it in GitHub Desktop.
Restore console.log()
This file contains hidden or 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
// Restore console.log() | |
javascript: (function() { | |
var i = document.createElement('iframe'); | |
i.style.display='none'; | |
document.body.appendChild(i); | |
window.console=i.contentWindow.console; | |
}()); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment