嗨,我正在尝试做一个谷歌Chrome扩展,它将在浏览器上有一个按钮,当点击它时,将打开一个带有这个网站http://www.visualbounds.com/Private/XboxMB/Chatbox/的气泡弹出窗口。但我是新来的,当我尝试使用iframe时,弹出窗口中什么都没有。
所以我想我问的是如何将网站嵌入到弹出窗口中?
下面是manifest.json,如果有帮助的话。
{
"browser_action": {
"default_icon": "Images/16.png",
"default_popup": "popup.html"
},
"background": {
"persistent": false,
"scripts": [ "background.js" ]
},
"content_scripts": [ {
"js": [ "jquery.js", "script.js" ],
"matches": [ "https://www.xboxmb.com/*" ],
"run_at": "document_start"
},{ "matches": ["http://*/*", "https://*/*" ],
"all_frames": true,
"js": ["content.js"]
}
],
"description": "Chat intergration for XboxMB",
"icons": {
"16": "Images/16.png",
"48": "Images/48.png"
},
"manifest_version": 2,
"name": "XboxMB Chatbox",
"options_page": "options.html",
"version": "2.2",
"permissions": [
"http://www.visualbounds.com/Private/XboxMB/Chatbox/mobile.html"
]
}
这是弹出窗口. html
<!doctype html>
<html>
<head>
<style type="text/css">
body {width:200; height:300;}
</style>
</head>
<body>
<iframe src="http://www.visualbounds.com/Private/XboxMB/Chatbox/mobile.html" width="100%" height="100%" frameborder="0">
</iframe>
</body>
</html>
任何帮助都将不胜感激。
此致
- 肖恩
1条答案
按热度按时间eh57zj3b1#
首先,您需要在manifest.json中分配默认的弹出窗口目标
只需插入一个iframe元素
您将在弹出窗口中看到嵌入的iframe。