Is there any way to define the size of the browser action popup. Now it's taking the size of the popup.html but i want it to be smaller. Is there any way to do so?
Thanks
This is a discussion on Popup size within the Plugins Development section, part of the Chrome Plugins category: Is there any way to define the size of the browser action popup. Now it's taking the size of the ...
Is there any way to define the size of the browser action popup. Now it's taking the size of the popup.html but i want it to be smaller. Is there any way to do so?
Thanks
Anybody???
Use some css and set the bodys width and height....
<style type="text/css">
body {
width: 30px;
height: 30px;
}
</style>
...put that in the head section of your page. Im not sure what the min/maxs are as the height wouldnt go below a certain size and I couldnt be bothered finding why that was.
Im still learning all this so something could be wrong
Hope it helps