1

直到最近,当我通过 Chrome Inspect Element 工具查看页面时,我才注意到一些额外的代码被添加到我的页面中。它可能一直都在那里,但我只是注意到了它。

它是什么?这是正常的,我错过了它还是 Chrome 扩展程序还是恶意软件?

当我查看源代码时,它不会显示在我的代码中。

下面是代码:

<div id="coFrameDiv" style="height:0px;display:none;">
<iframe id="coToolbarFrame" src="chrome-extension://
{unique-id-hiding-incase-sensitive}/toolbar/placeholder.html"
 style="height:0px;width:100%;display:none;"></iframe></div>
4

1 回答 1

1

任何工具栏都可以安装在 chrome 中,例如 Norton Toolbar。所以这些额外的代码块添加到您的页面中。如果没有为该工具栏选择“允许隐身”选项,您可以在 chrome://extensions/ 检查,您将看不到这些额外的代码。

查看源代码不会显示 html 的动态生成的 HTML,这就是它没有显示在那里的原因。

于 2015-11-30T20:17:38.823 回答