您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
隐藏知乎首页“分享此刻的想法”部件
// ==UserScript== // @name 知乎,谢谢我不想分享 // @namespace https://github.com/YanxinTang/zhihu-i-dont-want-to-share-my-thoughts // @version 0.0.1 // @description 隐藏知乎首页“分享此刻的想法”部件 // @author tyx1703 // @license MIT // @noframes // @run-at document-start // @grant GM_addStyle // @match https://www.zhihu.com // @match https://www.zhihu.com/follow // @match https://www.zhihu.com/hot // @match https://www.zhihu.com/column-square // ==/UserScript== (() => { GM_addStyle(` #root .Topstory-container > .Topstory-mainColumn > .WriteArea.Card { display: none !important; } `) })();