// ==UserScript==
// @name 去除C广告
// @namespace http://tampermonkey.net/
// @version 0.1
// @description try to take over the world!
// @author You
// @match https://blog.youkuaiyun.com/*
// @match https://so.youkuaiyun.com/*
// @match https://*.youkuaiyun.com/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
setInterval(function(){
$(".toolbar-advert").remove();
$(".csdn-common-logo-advert").remove();
//去除无用的东西
$(".blog_container_aside").remove();
$(".kind_person").remove();
$(".first-recommend-box").remove();
$(".second-recommend-box").remove();
$("#pcCommentBox").remove();
$(".recommend-box").remove();
$(".recommend-nps-box").remove();
$(".template-box").remove();
$(".blog-footer-bottom").remove();
$(".programmer1Box").remove();
$(".csdn-side-toolbar").remove();
$(".so-footer").remove();
$(".wrap-hot").remove();
$(".so-questionnaire-body").remove();
$("#treeSkill").remove();
$("#copyright-box").hide();
$(".user-spm-list").remove();
$("#tool-QRcode").remove();
$(".btn-feedback").closest("div").remove();
$("#kp_box_www_swiper_ban").remove();
$("#blog-slide-new").remove();
},10);
// Your code here...
})();
去除c广告
于 2022-11-07 10:08:38 首次发布