I have a Chrome extension (specifically, a "content script") where I'd like to detect whether the page I am monitoring/changing is in fullscreen state. I have tried several APIs, as well as the "screenfull" library, but no luck so far. Any ideas?
Thanks for your help!
If you want to detect whether the page has used the Fullscreen API to enter fullscreen mode, just check
document.webkitIsFullscreen
.If you want a general method to reliably detect full screen mode, the
chrome.windows
API is your only option. Since this API is unavailable to content scripts, you need to use the message passing API to interact with a background or event page.Example: content script
Example: background / event page