0

I Made A Google Extension That Displays The Date And Every Thing Went Fine But..

enter image description here

I Want To Put This Wed Dec 2020 in One Line Not Two.

And I Want To Know How To Change The Extension Window Size

Abhishek Pandey
  • 13,302
  • 8
  • 38
  • 68
badr
  • 47
  • 6

1 Answers1

1

Not really sure about chrome ext. development, but it seems it works on html css, then you can wrap date in a p tag and give it white-space: nowrap;

To increase size of the window, you can use height, width on body and html tag, but it has limits.

Chrome extension popups can have a maximum height of 600px and maximum width of 800px.

Source: How Can I Expand The Popup Window of My Chrome Extension

date.innerHTML = new Date();
p{
  white-space:nowrap;
  width:100px;
  background:#ddd;
}
<p id="date"></p>
Abhishek Pandey
  • 13,302
  • 8
  • 38
  • 68