天天看点

chrome浏览器使用记录

出现这个错误一般是因为chrome安装了adblocker等这样的插件,这些插件会把路径及文件名中包含广告字样的文字禁止掉,比如:<code>advert</code>,<code>ads</code>,<code>advertise</code>等。

解决方法:就是尽量不要用这些词。

在https协议的页面中,其它域的iframe页面默认是不让加载的,因为不安全。想要加载的话,需要在浏览器快捷方式加一个参数:

<code>C:\Program Files (x86)\Google\Chrome\Application\chrome.exe --allow-running-insecure-content</code>

<a href="https://stackoverflow.com/questions/18321032/how-to-get-chrome-to-allow-mixed-content">https://stackoverflow.com/questions/18321032/how-to-get-chrome-to-allow-mixed-content</a>

继续阅读