// ==UserScript== // @name 畅读搜狐 // @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.0 // @match *://www.sohu.com/a/* // @description 删除搜狐所有广告,重建主题内容 // @run-at document-end // @downloadURL none // ==/UserScript== let css = ` body { display: flex; background-color: bisque; justify-content: center; align-items: center; } #diy { margin: 50px; width: 1024px; } ` //css样式 GM_addStyle(css) $(() => { // 重建主题 $('.text').appendTo($("body")).wrap($("
")); // 删除多余标签 $("body *").not('#diy').not($('#diy').find("*")).remove() })