找到浏览器插件中的油猴,并下载,此处省略.......
点击(添加新的脚本),得到如下页面
复制下方代码,全选核心代码并粘贴替换,Ctrl+S保存,即可实现所需要的功能
// ==UserScript== //🌟 @name 关闭CSDN强制关注 // @namespace http://tampermonkey.net/ // @version 0.1 // @description try to take over the world! // @author You //🌟 @match https://www.csdn.net/** //🌟 @require http://cdn.bootcss.com/jquery/1.8.3/jquery.min.js // @icon data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw== // @grant none // ==/UserScript== (function() { 'use strict'; $("#article_content").removeAttr("style"); $(".hide-article-box").remove(); })();