Greasy Fork镜像 支持简体中文。

No Fullscreen Dropdown

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

  1. // ==UserScript==
  2. // @name No Fullscreen Dropdown
  3. // @namespace https://github.com/tientq64/userscripts
  4. // @version 0.3.2
  5. // @description Real fullscreen instead of fullscreen dropdown, very annoying when playing games. Useful for Microsoft Edge. Press Shift+F11 to toggle fullscreen.
  6. // @author tientq64
  7. // @icon https://cdn-icons-png.flaticon.com/64/4785/4785776.png
  8. // @match *://*/*
  9. // @license MIT
  10. // @grant none
  11. // @compatible edge
  12. // @noframes
  13. // @homepage https://github.com/tientq64/userscripts/tree/main/scripts/No-Fullscreen-Dropdown
  14. // ==/UserScript==
  15.  
  16. window.addEventListener('keydown', (event) => {
  17. if (event.repeat || event.ctrlKey || event.altKey || event.metaKey) return
  18.  
  19. if (event.code === 'F11' && event.shiftKey) {
  20. if (document.fullscreenElement) {
  21. document.exitFullscreen()
  22. } else {
  23. document.documentElement.requestFullscreen()
  24. }
  25. }
  26. })

QingJ © 2025

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