// ==UserScript== // @name [絕]csdn瘦身 // @author 絕版大叔丶 // @namespace https://github.com/Sdator/MyCode/tree/master/Js/%E6%9A%B4%E5%8A%9B%E7%8C%B4 // @icon https://avatars3.githubusercontent.com/u/17621623?s=40&v=4 // @version 1.6.2 // @match *://blog.csdn.net/* // @description 删除csdn所有广告,保留主题内容 // @grant GM_addStyle // @downloadURL none // ==/UserScript== let css = ` body { display: flex; background-color: bisque; justify-content: center; align-items: center; background-image: url(); } #diy { padding-top: 30px; margin: auto; } ` //css样式 GM_addStyle(css) $(() => { // 重建主题 元素提升到顶部 $("main").appendTo($("body")).wrap($("
")); // 删除多余标签 $("body *").not('#diy').not($('#diy').find("*")).remove() $("[class^=recommend]").remove() })