Google-chrome – disable console logging for all chrome extensions

google-chromegoogle-chrome-extensions

I'm a web developer, so I use the js console a lot to debug my web apps, but the extensions I prefer to use on Chrome write a lot of junk to the console. I don't want to have to disable all my extensions while working because I'm switching back and forth a lot. I could use user switching(on my OS) I know, but that's a pain too because again I'm switching back and forth allot.

I really want to just prevent any extensions from using the console period as I never need to see output from extensions, is their a way to do this? If not is there a way to quickly turn off all extensions and then back on, say by having some type of fast profile switching within chrome itself?

Just to be clear these are not extensions I write, these are ones I download that I want to prevent from using the console.

Best Answer

Chrome itself features user profiles and fast user switching. Add a user from chrome://settings/.

You can test your webapp from the new user you created.

enter image description here

Switching between users is just a matter of clicking on the icon on the top left and then select the other user

enter image description here

Related Question