您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
实际上是使知乎变安全。
// ==UserScript== // @name 永久禁用知乎 // @version 20240705r0 // @description 实际上是使知乎变安全。 // @author Eznibuil // @match https://www.zhihu.com/* // @require https://unpkg.zhihu.com/jquery/dist/jquery.slim.min.js // @license GPLv3 // @namespace https://greasyfork.org/users/1282465 // ==/UserScript== $(()=>{ $('.ExploreHomePage-specialsLogin').remove() $('.ExploreSpecialCard-banner').remove() $('.Question-sideColumn').remove() $('header').remove() $('link[rel="apple-touch-icon"]').attr('href','https://www.luogu.com.cn/favicon.ico') $('link[rel="shortcut icon"]').attr('href','https://www.luogu.com.cn/favicon.ico') $('main').css('background-color','#efefef') $('title').text('') window.setInterval(()=>{ $('.FollowButton').remove() $('.Reward').remove() $('.VoteButton').remove() $('.css-1335jw2').remove() $('.css-9b714r').remove() $('.css-ghjkiv').remove() $('.css-h5kwc4').remove() },100); });