// ==UserScript== // @name No Fullscreen Dropdown // @namespace http://tampermonkey.net/ // @version 0.1.0 // @description Real fullscreen instead of fullscreen dropdown, very annoying when playing games. Useful for Microsoft Edge. Press Shift+F11 to toggle fullscreen. // @author https://github.com/tientq64 // @match https://* // @license MIT // @grant none // @downloadURL none // ==/UserScript== window.addEventListener('keydown', (event) => { if (event.repeat) return if (event.shiftKey && event.key === 'F11') { if (document.fullscreenElement) { document.exitFullscreen() } else { document.body.requestFullscreen() } } })