,可以通过以下步骤实现:
"browser_action": {
"default_popup": "popup.html",
"default_width": 400,
"default_height": 300
},
上述代码中,"default_width"和"default_height"分别表示弹出窗口的默认宽度和高度。
<!DOCTYPE html>
<html>
<head>
<style>
body {
height: 300px; /* 设置弹出窗口的高度为300像素 */
}
</style>
</head>
<body>
<!-- 弹出窗口的内容 -->
</body>
</html>
上述代码中,通过设置body元素的高度来控制弹出窗口的高度。
chrome.browserAction.onClicked.addListener(function() {
chrome.browserAction.setPopup({ popup: "popup.html" });
});
上述代码中,通过调用chrome.browserAction.setPopup方法,将popup.html文件设置为弹出窗口的内容。
通过以上步骤,就可以在Chrome BrowserAction弹出窗口中设置默认高度。用户点击BrowserAction图标时,弹出窗口将以指定的高度显示出来。
没有搜到相关的沙龙
领取专属 10元无门槛券
手把手带您无忧上云