JetBrains IDE Support Extension - How to disable Chrome Warnings?

NetbeansIntellij IdeaPhpstormWebstorm

Netbeans Problem Overview


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

Netbeans Solutions


Solution 1 - Netbeans

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.

Solution 2 - Netbeans

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

Solution 3 - Netbeans

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 https://stackoverflow.com/questions/59304414/enable-silent-debugging-is-not-available-in-chrome-browser

Solution 4 - Netbeans

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...

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionOmar GonzalezView Question on Stackoverflow
Solution 1 - NetbeansCrazyCoderView Answer on Stackoverflow
Solution 2 - NetbeansMarco SanchezView Answer on Stackoverflow
Solution 3 - NetbeansLeonidas AView Answer on Stackoverflow
Solution 4 - NetbeansAliView Answer on Stackoverflow