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 提交的版本,查看 最新版本

  1. // ==UserScript==
  2. // @name No Fullscreen Dropdown
  3. // @namespace https://github.com/tientq64/userscripts
  4. // @version 0.3.0
  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 https://github.com/tientq64
  7. // @match *://*/*
  8. // @license MIT
  9. // @grant none
  10. // ==/UserScript==
  11.  
  12. window.addEventListener('keydown', (event) => {
  13. if (event.repeat || event.ctrlKey || event.altKey || event.metaKey) return
  14.  
  15. if (event.key === 'F11' && event.shiftKey) {
  16. if (document.fullscreenElement) {
  17. document.exitFullscreen()
  18. } else {
  19. document.documentElement.requestFullscreen()
  20. }
  21. }
  22. })

QingJ © 2025

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