preview any image
当前为
// ==UserScript==
// @name Image Preview
// @namespace https://mp.weixin.qq.com/s/*
// @version 0.3
// @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;
}
}