Greasy Fork is available in English.
删除csdn所有广告,保留主题内容
当前为
// ==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
// @match *://blog.csdn.net/*
// @description 删除csdn所有广告,保留主题内容
// @grant GM_addStyle
// ==/UserScript==
let css = `
body {
display: flex;
background-color: bisque;
justify-content: center;
align-items: center;
}
#diy {
margin: auto;
width: 1024px;
}
`
//css样式
GM_addStyle(css)
$(() => {
// 重建主题 元素提升到顶部
$("main").appendTo($("body")).wrap($("<div id='diy'></div>"));
// 删除多余标签
$("body *").not('#diy').not($('#diy').find("*")).remove()
$("[class^=recommend]").remove()
})