这两天闲着没事看csdn,看到好多博主弄这个关注才可以看文章
正好好久没写过那个油猴的插件,今天就用油猴写个这玩意。大家可以试着玩
代码我贴下面了,想用自取啊
// ==UserScript==
// @name 去除关注才可以阅读
// @namespace http://tampermonkey.net/
// @version 1.0
// @description try to take over the world!
// @require https://cdn.bootcss.com/jquery/3.5.1/jquery.min.js
// @author wcw
// @match https://blog.csdn.net/*
// @icon https://www.google.com/s2/favicons?sz=64&domain=tampermonkey.net
// @grant none
// ==/UserScript==
(function () {
$("#article_content").removeAttr("style");
$(".hide-article-box").remove();
})();