How to enable mixed content (insecure mode) in browsers (Chrome, Opera, FF) for local development at Mac OS?

firefox, google-chrome, macos

Solution

I found this command `/Applications/Google\ Chrome.app/Contents/MacOS/Google\ Chrome --user-data-dir=/tmp/tempchrome --allow-running-insecure-content --incognito &`

It works fine.

Problem

I simply tried almost all known ways to enable mixed content in browsers. Nothing works on Mac. This link provides some solutions that aren't working for me. Also i tried `open -a Google\ Chrome --args --disable-web-security --allow-running-insecure-content` without positive result. Do you have any thoughts how to make it work at Mac?

Original source