crossrider sidepanel只是一个iframe(你可以使用js注入的html,但我有兴趣使用iframe来减少对页面其余部分的干扰)。我在浏览器扩展程序和iframe之间进行任何互动时都遇到了问题。
除非您可以进行一些基本的JS通信,否则在添加带扩展的侧面板时我完全没有意义。在这种情况下,我想在控制扩展名的iframe中使用一些选项,复选框等。由于这个插件存在,我假设必须有办法。
理想情况下,我希望在子iframe中有一些基本的输入处理js,并让它发回奇数的save / load命令。答案真的是某种形式的消息传递吗?如果是的话,我应该在这里使用哪个API?
我认为这是相关的:Accessing iframe from chrome extension
[修改]
好的,所以我尝试了一些事情......
似乎预期的用法是在某处托管iframe的html内容。考虑到它应是本地的并且是扩展的一部分,有点奇怪。如果要离线查看某些页面会发生什么?这只是愚蠢的,我将其视为一种选择。为什么浪费资源托管本地应该可用的东西。
另一种方法是提供侧边栏中的HTML。请注意,此HTML不会放在iframe中。我喜欢iframe的想法,因为它使CSS和JS保持分离,因此页面和扩展之间的干扰最小。
因此,我尝试使用html
侧边栏属性和ID创建iframe,并在使用myiframe.contentWindow.document.open/writeln/close()
延迟100ms后注入内容。这在chrome上工作正常,但在firefox中因安全性错误(The operation is insecure
上的open()
)而失败。
另一种方法是通过src
网址提供iframe内容(对于侧栏我使用url
属性的数据地址):Html code as IFRAME source rather than a URL。这适用于Firefox,但导致chrome中出现CORS错误:The frame requesting access has a protocol of "http", the frame being accessed has a protocol of "data". Protocols must match.
和Warning: Blocked a frame with origin "http://localhost" from accessing a cross-origin frame. Function-name: appAPI.message.addListener
这些CORS问题让我觉得非常愚蠢。这是我的所有代码来自相同的扩展,注入到同一页面。没有交叉起源,我创造了该死的东西。如果我有能力改变原点,那么它首先是不安全的,所以为什么要这么麻烦。
答案 0 :(得分:2)
假设您使用网址侧边栏属性加载侧边栏的HTML(即托管网页),您可以使用扩展程序的在iframe中运行功能进行通信iframe扩展名和父窗口的扩展名。
要实现此目的,请首先启用扩展程序以在iframe中运行(设置&gt; 在Iframe中运行),然后您可以使用 extension.js < / em>加载侧边栏并处理消息传递。例如,以下代码加载一个页面,其中包含带有标识 btnSave 的按钮:
托管网页文件:
<html>
<head>
</head>
<body>
<div id="mySidebar">
My sidebar form
<br />
<button id="btnSave">Save</button>
</div>
</body>
</html>
extension.js 档案:
appAPI.ready(function($) {
// Check if running in iframe and the sidebar page loaded
if (appAPI.dom.isIframe() && $('#mySidebar').length) {
// Set click handler for button to send message to parent window
$('#btnSave').click(function() {
appAPI.message.toCurrentTabWindow({
type:'save',
data:'My save data'
});
});
// End of Iframe code ... exit
return;
}
// Parent window message listener
appAPI.message.addListener(function(msg) {
if (msg.type === 'save') {
console.log('Extn:: Parent received data: ' +
appAPI.JSON.stringify(msg.data));
}
});
// Create the sidebar
var sidebar = new appAPI.sidebar({
position:'right',
url: 'http://yourdomain.com/sidebar_page.html',
title:{
content:'Sidebar Title',
close:true
},
opacity:1.0,
width:'300px',
height:'650px',
preloader:true,
sticky:true,
slide:150,
openAction:['click', 'mouseover'],
closeAction:'click',
theme:'default',
scrollbars:false,
openOnInstall:true,
events:{
onShow:function () {
console.log("Extn:: Show sidebar event triggered");
},
onHide:function () {
console.log("Extn:: Hide sidebar event triggered");
}
}
});
});
但是,如果您使用 html 侧边栏属性来加载侧边栏的HTML,则此解决方案将无效,因为扩展程序未在此上下文中运行。但是,您可以利用所引用的StackOverflow线程中描述的方法与父窗口进行通信(这将是特定于浏览器的),而后者又可以使用我们的CrossriderAPI event与扩展进行通信。
[免责声明:我是Crossrider员工]