Chrome 扩展:打开选项卡而不弹出窗口
我在 popup.html 文件中使用了以下代码:
<script type="text/javascript" charset="utf-8">
chrome.tabs.create({'url': chrome.extension.getURL('page.html')}, function(tab) {
});
</script>
当我单击扩展图标时,会打开一个新页面,但按钮附近会弹出一个空浏览器。如何打开选项卡而不出现空弹出窗口?
谢谢。
I've used the following code in my popup.html file:
<script type="text/javascript" charset="utf-8">
chrome.tabs.create({'url': chrome.extension.getURL('page.html')}, function(tab) {
});
</script>
When I click the extension icon a new page does open, but so does an empty browser popup near the button. How do I open the tab without the empty popup appearing?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
弹出窗口是可选的。只需从清单中删除
default_popup
属性,然后您就可以监听 背景页面或活动页面:Popup is optional. Just remove
default_popup
property from your manifest and then you can listen to icon click events in a background page or event page: