chrome扩展名

时间:2018-02-05 00:15:05

标签: javascript google-chrome google-chrome-extension

我想通过Chrome扩展程序防止帧破坏。特别是,我想使用本文中引用的方法(https://crypto.stanford.edu/~dabo/pubs/papers/framebust.pdf),但我无法直接访问html页面。有没有办法使用chrome扩展来执行相同的windows.onbeforeunload下面?我读过https://developer.chrome.com/extensions/webRequest,但不确定是否有任何适用于这种情况。

www.example.com中的帧破坏代码

if (parent.location != self.location) {
    parent.location = self.location ;
}

我希望chrome扩展程序执行的操作等同于以下

<script>
window.onbeforeunload = function() {
    return ”Asking the user nicely”;
}
</script>

<iframe src = ”http://www.example.com”>

0 个答案:

没有答案