-
// ==UserScript==
// @name:ko 네이버 SE
// @name Naver SE
// @description -
// @description:ko -
// @version 2026.02.08.1438
// @author ndaesik
// @icon https://www.naver.com/favicon.ico
// @match https://www.naver.com/
// @match https://m.naver.com/
// @run-at document-start
// @namespace https://ndaesik.tistory.com/
// ==/UserScript==
let styleSheet = document.createElement("style")
styleSheet.innerText = `
html {overflow: hidden;}
#wrap {
background: url(https://upload.wikimedia.org/wikipedia/commons/thumb/2/23/Naver_Logotype.svg/1200px-Naver_Logotype.svg.png)no-repeat;
border-top: 2px solid #00c73c;
background-size: 350px 69px;
background-attachment: fixed;
background-position: 50% 38vh;
min-width:unset;
height:100vh;}
#header {width:unset;}
#root > :not(:nth-child(2)),
#right-content-area > div > :not(:nth-child(1)),
#right-content-area > :nth-child(2),
#footer,
#special-logo,
#search-right-banner,
#shortcutArea,
#topPayArea,
#topNotiArea,
#topShoppingArea,
#timeboard-ex {display:none;}
#header .header_inner .search_area {top:50vh;}
#right-content-area {position:fixed; right:3px; top:3px;z-index:9999;}
#header .header_inner .menu_area {position:absolute;top:15px;left:15px;width:48px;}
.atcmp_container>[role="listbox"] {max-height:250px;overflow-y:scroll;}
/* mobile */
#MM_search_container,
#MM_search_container ~ .main_footer,
#sb-kh-shortents-wrap {display:none;}
`.replaceAll(';','!important;')
document.head.appendChild(styleSheet)