、またはオブジェクトを指定して、クロム拡張機能でウィンドウを非表示にする(最小化しない)方法は?windowId
chrome.window
これが私のコードです:
chrome.windows.create(
{
url:"http://www.google.com",
type:"panel",
left:0,
top:0,
focused: false,
width: 200,
height: 400
}, function(createdWindow) {
// How to hide this window object; having its object handler "createdWindow" ?
}
);