21

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.

Xan
  • 74,770
  • 16
  • 179
  • 206
Yashwant Kumar Sahu
  • 3,356
  • 7
  • 27
  • 42

2 Answers2

25

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

serg
  • 109,619
  • 77
  • 317
  • 330
4

Just add the code at the begin of your default popup html file:

<head>
 <style>
html {
  height: 200px;  # Set the height and width here. It must be larger
                  # than 25*25 but smaller than 800*600.
  width: 200px;      
}
</style>
</head>
Alston
  • 2,085
  • 5
  • 30
  • 49