快速去除博客园广告

原理

每篇博客的结尾都会有一点广告....

审查元素,发现广告和评论都放在一个comment_form类里面

去除方法

点击管理--->设置--->侧边栏或首页位置添加如下代码来删除元素

<script>
    var box=document.getElementById("comment_form");
    box.remove();
</script>

P.S.

首次去除的比较糙,把评论也去了

去除编辑推荐

去除最新新闻(建议别去)

<script>
    document.getElementById("under_post_card1").remove();
    document.getElementById("under_post_card2").remove();
    document.getElementById("cnblogs_c1").remove();
    document.getElementById("cnblogs_ch").remove();
</script>
原文地址:https://www.cnblogs.com/hxlinux/p/15717821.html