How to allow Chrome (browser) to load insecure content?

When you visit a secure page with insecure content, a shield icon will appear at the right edge of the omnibar.

Click on the shield icon, and then click Load anyway, and the insecure content will be loaded.

enter image description here


Windows 8:

"C:\Program Files (x86)\Google\Chrome\Application\chrome.exe" --allow-running-insecure-content

OSX 10.11:

'/Applications/Google Chrome.app/Contents/MacOS/Google Chrome' --allow-running-insecure-content


on a mac, you can create an applescript application in applesript editor with following contents:

do shell script "'/Applications/Google Chrome.app/Contents/MacOS/Google Chrome' --allow-running-insecure-content > /dev/null 2>&1 &"

when you save it as an application, you can assign chrome icon to it :)