Greasy Fork

Naver SE

Minimal design for Naver.com

当前为 2023-07-27 提交的版本,查看 最新版本

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

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

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

// @run-at            document-start
// ==/UserScript==
let styleSheet = document.createElement("style")
styleSheet.innerText = `
html {overflow: hidden!important}
#wrap {background: url(https://upload.wikimedia.org/wikipedia/commons/thumb/2/23/Naver_Logotype.svg/1200px-Naver_Logotype.svg.png)no-repeat!important;
         border-top: 2px solid #00c73c!important; background-size: 350px 69px!important; background-attachment: fixed!important; background-position: 50% 38vh!important; height:100vh!important}
#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 {display:none!important}
#header .header_inner .search_area {top:50vh!important}
#right-content-area {position:fixed!important; right:0!important; top:0!important; z-index: 9999!important}`
document.head.appendChild(styleSheet)