Enable Web Inspector In Release Mode

When using the JUCE embedded web browser it suppresses the developer tools in release mode, counter intuitively it still enables the right click menu with the reload option no one would truly want in a “release” build

       #if JUCE_DEBUG
        [preferences setValue: @(true) forKey: @"developerExtrasEnabled"];
       #endif

This is inconvenient cause I want to still work on the UI while running a release build under the hood requiring me to modify JUCE, and I still need to suppress the right click context menu via Javascript in a true release / production / deployment build.

As we all know, profiling and debugging release builds is critical and just cause a product is built as release, it not an indicator that that build is actually meant for deployment / customers, I suggest we remove this gate all together and leave it upon the developer to specify when to suppress the browser right click context menu.