Chrome扩展程序,iframe,工具栏 - 黑客

时间:2011-03-24 20:50:41

标签: google-chrome iframe toolbar

我正在使用我的扩展程序 - Google Chrome工具栏。这是一个矩形:

\#top { width:100%; height:50px; top:0; left:0 }

问题是我知道的唯一方法是将工具栏的代码注入iframe。就同​​一个原始政策而言,网站无法操纵iframe内部的html。

!BUT!

如果网页所有者使用以下代码

,该怎么办?
$(document).ready(function() {

setInterval('$("#top").hide()',5000);

});

然后它只是隐藏我的工具栏。那么在开发chrome扩展时是否有可能阻止此类操作的解决方案?

1 个答案:

答案 0 :(得分:0)

获取不太可能存在于全局命名空间中的内容,例如:

#extension-name-top { width:100%; height:50px; top:0; left:0 }