在知乎上看到有匿名用户写的去广告油猴脚本,但是最近右下角多了一个博客之星的块块,原版不能屏蔽掉。所以仿照知乎用户的写法改进了一下
以下是知乎的版权信息:
作者:知乎用户
链接:https://www.zhihu.com/question/52061495/answer/478113786
来源:知乎
著作权归作者所有。商业转载请联系作者获得授权,非商业转载请注明出处。
以下是脚本:
// ==UserScript==
// @name 干掉CSDN广告
// @namespace http://your.homepage/
// @version 0.1
// @description CSDN越来越过分了,那就来个彻底的吧
// @author You
// @match https://blog.csdn.net/*
// @grant none
// @require http://code.jquery.com/jquery-3.3.1.min.js
// ==/UserScript==
(function () {
'use strict';
//干掉广告
$('#_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();
})();