Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Increase max popup width in a Chrome extension?

I am making a Chrome extension and I need to increase the max width size of the frame window (popup).

If I increase the width of popup.html, then the inner width is increased. I need to increase the size of the popup.

like image 704
Yashwant Kumar Sahu Avatar asked Jan 12 '11 06:01

Yashwant Kumar Sahu


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 increase the pop-up size in HTML?

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.

How big can Chrome extensions be?

Based on testing, both years ago and again today, the maximum width and height of the extension popup UI is width: 800px and height: 600px.

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

Do you mean you are hitting the width limit? You can increase popup width up to 800px, anything over is ignored.

like image 124
serg Avatar answered Sep 28 '22 04:09

serg