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.
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.
Do you mean you are hitting the width limit? You can increase popup width up to 800px, anything over is ignored.
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>