Tampermonkey Hide Header

New! 2025 Reduces TamperMonkey header so there is more work space in the script Editor.

  1. // ==UserScript==
  2. // @name Tampermonkey Hide Header
  3. // @namespace https://bowhip.org/
  4. // @version 1.0
  5. // @description New! 2025 Reduces TamperMonkey header so there is more work space in the script Editor.
  6. // @match chrome-extension://dhdgffkkebhmkfjojejmpbldmpobfkfo/*
  7. // @grant none
  8. // ==/UserScript==
  9.  
  10.  
  11. // This script reduces Tampermonkey header so there is more space to edit scripts. Hides the large top header.
  12. //KW: increase height of editor, improve scripting interface, UI style, editor veiw, editor layout height, editor size,
  13.  
  14. // jAdkins - bowHip.org/foster || github.com/qp5/
  15.  
  16.  
  17. /*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
  18. STEPS 一 Hide Tampermonkey script editor header:
  19.  
  20. 1 ● Open Tampermonkey "Dashboard"
  21. 2 ● Select ⚙️Settings tab (top-right)
  22. 3 ● Then change: Config Mode → "Advanced"
  23. 4 ● Appearance Layout: Custom CSS:
  24. 5 ● Finally: Paste the CSS below into the Custom CSS:
  25. ● Note: Select "Save" under the CSS textbox 一 that's it!
  26.  
  27.  
  28. // Copy past this CSS code:
  29.  
  30. // ■ Hides Header
  31. .head_container {
  32. display: none !important;
  33. }
  34. .tv_container_fit {
  35. top: 0 !important;
  36. }
  37.  
  38. .tab_container {
  39. display: none !important;
  40. }
  41.  
  42.  
  43. // ■ Hides Title Header
  44.  
  45. .head_logo {
  46. display: none !important;
  47. }
  48.  
  49. .script_tab_head {
  50. display: none !important;
  51. }
  52.  
  53. */

QingJ © 2025

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