54

Hey there I've been using the JetBrains IDE support extension for a week now, and While it is great utility. I grow tired of clicking the "X' in the Chrome Yellow Warning ("JetBrains IDE Support" is debugging this tab.)

This may be a noobish question for experienced devs, but does anyone knows how to get rid of this Chrome pop-ups?

Thanks :)

Here is a snapshot:

enter image description here

PeterVermont
  • 1,922
  • 23
  • 18
Omar Gonzalez
  • 1,117
  • 4
  • 14
  • 22

4 Answers4

98

You can disable this warning in chrome://flags using the Enable Silent Debugging flag:

Enable Silent Debugging

It's mentioned in the comment #28.

Here is the direct link to the option: chrome://flags/#silent-debugger-extension-api Just paste this to your Chrome addressbar.

Armin
  • 15,582
  • 10
  • 47
  • 64
CrazyCoder
  • 389,263
  • 172
  • 990
  • 904
1

For the ones who didn't understand ( like me :P )

You need to open this address chrome://flags in Google-Chrome and Enable Silent Debugging

Marco Sanchez
  • 788
  • 7
  • 22
1

While the relevant flag has been removed from chrome://flags, you can still use the command line switch:

chrome --silent-debugger-extension-api

which can be persisted in your flags config (eg. ~/.config/chrome-flags.conf on linux).

See Enable Silent Debugging is not available in Chrome browser

Leonidas A
  • 329
  • 2
  • 11
0

For the newer versions of the Chrome this flag is not available anymore.

So Here is the solution

Open settings in your IDE then head into Tools>Web Browsers then click on Chrome and hit the pencil icon and write this in "command line options" finaly hit ok

--silent-debugger-extension-api

now close your chrome if it is open then try to launch it again using debug or run...

Ali
  • 138
  • 2
  • 4