1.安装油猴插件:Greasy Fork - 安全、实用的用户脚本大全
2.重启浏览器,打开油猴-管理面板,点击 + ,然后复制如下脚本,保存即可。
新增内容 : 去除head头广告
// ==UserScript==
// @name 干掉CSDN广告
// @namespace http://your.homepage/
// @version 0.1
// @description 0-0
// @author You
// @match https://blog.csdn.net/*
// @grant none
// @require http://code.jquery.com/jquery-3.3.1.min.js
// ==/UserScript==
(function () {
'use strict';
//干掉广告
$('.toolbar-advert').remove();
$('#_360_interactive').remove();
$('.bdsharebuttonbox').remove();
$('info-div').remove();
$('aside').children()[1].remove();
$('#asideFooter').remove();
//干掉VIP免广告字样
$('#adContent').remove();
//干掉下方登录条
$('.pulllog-box').remove();
// 删掉博客之星广告
$('.indexSuperise').remove();
//自动点击阅读更多
document.getElementById('btn-readmore').click();
})();