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    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
// ==/UserScript==

window.addEventListener('keydown', (event) => {
	if (event.repeat) return
	if (event.shiftKey && event.key === 'F11') {
		if (document.fullscreenElement) {
			document.exitFullscreen()
		} else {
			document.body.requestFullscreen()
		}
	}
})

QingJ © 2025

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