您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Minimal design for Naver.com
当前为
// ==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)