Tampermonkey Hide Header

Reduces the Tampermonkey header for more work space within script editor of TamperMonkey.

目前为 2025-03-31 提交的版本。查看 最新版本

// ==UserScript==
// @name         Tampermonkey Hide Header
// @namespace    https://bowhip.org/
// @version      1.0
// @description  Reduces the Tampermonkey header for more work space within script editor of TamperMonkey.
// @match        chrome-extension://dhdgffkkebhmkfjojejmpbldmpobfkfo/*
// @grant        none
// ==/UserScript==


// This script reduces Tampermonkey header so there is more space to edit scripts. Hides thw large top header.
//KW: increase height of editor, improve scripting interface, UI style, editor vewi, editor layout height, editor size,

// jAdkins - bowHip.org/foster ||  github.com/qp5/


/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
STEPS 一 Hide Tampermonkey script editor header:

  1 ● Open Tampermonkey "Dashboard"
  2 ● Select ⚙️Settings tab (top-right)
  3 ● Then change: Config Mode → "Advanced"
  4 ● Appearance  Layout: Custom CSS:
  5 ● Finaly: Paste the CSS below into the Custom CSS:
        ● Note: Select "Save" under the CSS textbox 一 that's it!


//  Copy past this CSS code:

// ■ Hides Header
.head_container {
  display: none !important;
}
.tv_container_fit {
  top: 0 !important;
}

.tab_container {
  display: none !important;
}


// ■ Hides Title Header

.head_logo {
  display: none !important;
}

.script_tab_head {
  display: none !important;
}

*/