Dsiabled anti ADblock AD

preview any image

当前为 2021-09-13 提交的版本,查看 最新版本

// ==UserScript==
// @name         Dsiabled anti ADblock AD
// @namespace    https://mp.weixin.qq.com/s/*
// @version      0.1
// @description  preview any image
// @author       You
// @match        https://www.zhangxinxu.com/*
 
// @grant        none
// ==/UserScript==
const childNodes = document.body.childNodes;

for (const node of childNodes) {
  if (node.nodeName.indexOf('-') !== -1) {
    // 自定义元素
    node.style.display = 'none';
    break;
  }
}