Shashi Bharti
Shashi Bharti

Reputation: 53

How to make a full screen html popup in Chrome Extension?

Default popup.html of Chrome is of 600 * 800 size.

How can I produce a full screen popup?

Upvotes: 0

Views: 2911

Answers (1)

waqas ali
waqas ali

Reputation: 603

Use screen.availWidth and screen.availHeight to calculate a suitable size for the height and width parameters in window.open()

Although this is likely to be close, it will not be maximised, nor accurate for everyone, especially if all the toolbars are shown. visit How to show fullscreen popup window in javascript?

Upvotes: 2

Related Questions