找到浏览器插件中的油猴,并下载,此处省略....... 文章来源:https://www.toymoban.com/news/detail-606525.html
- 点击(添加新的脚本),得到如下页面
- 复制下方代码,全选核心代码并粘贴替换,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/** // @match https://blog.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(); })();
文章来源地址https://www.toymoban.com/news/detail-606525.html
到了这里,关于关闭强制粉丝关注功能的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!