如何允许 Chrome(浏览器)加载不安全的内容?

如何允许 Chrome(浏览器)加载不安全的内容?

默认情况下,Google Chrome 会阻止安全页面上的不安全内容。有没有办法让它加载完整内容并询问我(就像 Firefox 那样)?即使它不询问我而只是加载,我也可以接受。

答案1

当您访问包含不安全内容的安全页面时,多功能栏的右边缘会出现一个盾牌图标。

单击盾牌图标,然后单击仍然加载,不安全的内容就会被加载。

在此处输入图片描述

答案2

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

答案3

要在 Chrome 中允许单个网站上的不安全内容,请点击 URL 栏中的锁定图标,然后点击“网站设置”。 Chrome 多功能栏中的网站锁定图标

您将看到该页面具有的各种权限的列表。选择“不安全内容”旁边的“允许”。 权限列表

答案4

在 Mac 上,您可以在 AppleScript 编辑器中创建一个 AppleScript 应用程序,内容如下:

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

当您将其保存为应用程序时,您可以为其分配 chrome 图标:)

相关内容