Reputation: 9804
How to hide (Not Minimize) a window in chrome extensions
given its windowId
, or chrome.window
object ?
Here's my code:
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" ?
}
);
Upvotes: 2
Views: 2601