您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
使用小红书网页版作为搜索引擎,隐藏主页的时间线,搜索框页面居中。RAASE™ (Rednote as a Search Engine)
/* ==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; } } }