只用小红书搜索

使用小红书网页版作为搜索引擎,隐藏主页的时间线,搜索框页面居中。RAASE™ (Rednote as a Search Engine)

您需要先安装一个扩展,例如 篡改猴Greasemonkey暴力猴,之后才能安装此脚本。

您需要先安装一个扩展,例如 篡改猴暴力猴,之后才能安装此脚本。

您需要先安装一个扩展,例如 篡改猴暴力猴,之后才能安装此脚本。

您需要先安装一个扩展,例如 篡改猴Userscripts ,之后才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。

您需要先安装用户脚本管理器扩展后才能安装此脚本。

(我已经安装了用户脚本管理器,让我安装!)

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

(我已经安装了用户样式管理器,让我安装!)

/* ==UserStyle==
@name         只用小红书搜索
@namespace     https://maxchang.me
@version         0.0.3
@description    使用小红书网页版作为搜索引擎,隐藏主页的时间线,搜索框页面居中。RAASE™ (Rednote as a Search Engine)
@author        Max Chang
@license      MIT
==/UserStyle== */
@-moz-document regexp("^https://www\\.xiaohongshu\\.com/explore(?:\\?.*)?$") {
	#mfContainer {
		display: none;
	}
	.mask-paper {
		background: none!important;
		backdrop-filter: none!important;
		min-height: 100vh;
	}
	.input-box {
		top: 35%;
		left: 55% !important;
	}
	.side-bar {
		    z-index: 999;
	}
	@media screen and (max-width: 695px) {
		.input-box {
			width: 80% !important;
			padding: 0 84px 0 16px !important;
		}
		.min-width-search-icon {
			display: none !important
		}
		.input-button {
			opacity: 1 !important;
		}
	}
}