to using commands that were previously submitted by bringing focus to the console and pressing up/down key on it. I want to remove all of the recent command. I\'ve tried thi
I found a quick way to do this with cool keyboard shortcut:
Inside chrome console
clear
and you will find it :)
That's it!
Simply enter clear()
in the chrome console to remove all previous text there.
You can now just right click on the console area and select "Clear console history".
Press f5 key. When you refresh the current webpage where you've been working on, the command history will be removed.
If you don't want to have this console history (like myself), simply disable it from the devtool's configuration options (see on the image) below ...
If you want to clear the list of last typed commands, follow these steps:
(Step 1 and 2 are important, don't skip them!)
chrome-devtools://devtools
.Right-click on the item with key "consoleHistory", and choose "Delete".
Done! You may close the new console, and then dock the previous one if wanted. The console history will be gone when you reload the console.
If you just want to clear the console log (not the commands), just press Ctrl + L.
You could also use Incognito mode if you don't want to keep the list of commands you're going to type.