// ==UserScript== // @name Dsiabled anti ADblock AD // @namespace https://mp.weixin.qq.com/s/* // @version 0.3 // @description preview any image // @author You // @match https://www.zhangxinxu.com/* // @grant none // @downloadURL none // ==/UserScript== const childNodes = document.body.childNodes; for (const node of childNodes) { if (node.nodeName.indexOf('-') !== -1) { // 自定义元素 node.style.display = 'none'; break; } }