Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

chrome extension, popup window's height

It seems to me that the popup window's height has a limit of 489 pixels. If I'm setting the body element of the popup to 600 pixels of height, then popup window gets a scroll bar (because the page inside becomes larger) but the popup window doesn't change its size.

Is it possible to make the popup window's height bigger then 489 pixels?

like image 775
megas Avatar asked Aug 20 '11 00:08

megas


People also ask

How do I change the pop-up size in Chrome?

The popup window sizes are set to the Chrome's largest possible limits. Alternatively you can set this Option > Button > "Open Checker Plus detached" then open the popup by clicking the icon and resize the window. The next time you open the popup it will remember that size.

How do I reduce the size of a pop-up window?

You can set height and width of your popup window by using window. resizeTo(preferedWidth, preferedHeight) function. If you want to set this inside a popup window not from parent window than self. resizeTo(preferedWidth, preferedHeight); will do the job for you.

What is a Chrome exten?

Extensions are small software programs that customize the browsing experience. They enable users to tailor Chrome functionality and behavior to individual needs or preferences. They are built on web technologies such as HTML, JavaScript, and CSS.


1 Answers

Set height in css for both html and body elements.

like image 194
serg Avatar answered Sep 28 '22 09:09

serg