VSCode supports regex in find and replace (select the star icon when you open find)
Then using this regex pattern will find all occurrences of
console.log(anything);
Pattern
console\.log\(.+\);
You can then just do a replace with nothing, and it’ll remove them all. Not exactly what you wanted (an extension) but this works with a clean vscode install out of the box