No Fullscreen Dropdown

Real fullscreen instead of fullscreen dropdown, very annoying when playing games. Useful for Microsoft Edge. Press Shift+F11 to toggle fullscreen.

目前为 2024-05-24 提交的版本。查看 最新版本

// ==UserScript==
// @name         No Fullscreen Dropdown
// @namespace    https://github.com/tientq64/userscripts
// @version      0.2.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
// ==/UserScript==

window.addEventListener('keydown', (event) => {
	if (event.repeat) return

	const { key, shiftKey, ctrlKey, altKey, metaKey } = event

	if (key === 'F11' && shiftKey && !ctrlKey && !altKey && !metaKey) {
		if (document.fullscreenElement) {
			document.exitFullscreen()
		} else {
			document.body.requestFullscreen()
		}
	}
})

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址