NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name CSDN免登陆自动加载更多 | 并美化阅读 // @namespace http://tampermonkey.net/ // @version 0.1 // @description CSDN阅读模式,删除文章以外所有信息 // @author xiaoming // @license MIT // @copyright 2018, zhoushengming (https://openuserjs.org//users/zhoushengming) // @match *://blog.csdn.net/* // @grant none // @require https://csdnimg.cn/public/common/libs/jquery/jquery-1.9.1.min.js // ==/UserScript== (function() { 'use strict'; // Your code here... $("div.article_content").removeAttr("style"); $("#btn-readmore").parent().remove(); //话说fork别人的代码修改后怎么填写 UserScript信息 //删除登录框 $(".pulllog-box").remove(); //以下修改仅为个人更好的阅读使用,去除了所有社交功能,请慎重使用 //删除点赞等按钮 $(".tool-box").remove(); $(".meau-gotop-box").remove(); //去除标题框 $("#csdn-toolbar").remove(); //去除左下角官方推广 $("#asideFooter").remove(); //去除其他推荐中的博主关注推荐功能 $(".blog-expert-recommend-box").remove(); //测试: https://blog.csdn.net/canfeit/article/details/82999393 $("aside").remove(); $(".recommend-box").remove(); $(".container main").width("100%"); })();