Naver SE

Minimal design for Naver.com

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 Tampermonkey,才能安裝此腳本

您需要先安裝使用者腳本管理器擴充功能後才能安裝該腳本。

(我已經安裝了使用者腳本管理器,讓我安裝!)

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

(我已經安裝了使用者樣式管理器,讓我安裝!)

// ==UserScript==
// @name:ko           네이버 SE
// @name              Naver SE

// @description:ko    네이버 미니멀디자인 메인 페이지
// @description       Minimal design for Naver.com

// @namespace         https://ndaesik.tistory.com/
// @version           2025.11.18.1042
// @author            ndaesik
// @icon              https://www.naver.com/favicon.ico
// @match             https://www.naver.com/
// @match             https://m.naver.com/

// @run-at            document-start
// ==/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,
#topAsideArea,
#timeboard-ex {display:none;}
#header .header_inner .search_area {top:50vh;}
#right-content-area {position:fixed; right:0; top:3px; z-index: 9999;}

/* mobile */
#MM_search_container,
#MM_search_container ~ .main_footer,
#sb-kh-shortents-wrap {display:none;}
`.replaceAll(';','!important;')

document.head.appendChild(styleSheet)