屏蔽网页上所有的图片,方便摸鱼
// ==UserScript==// @name 屏蔽网页上的图片// @namespace http://tampermonkey.net/// @version 0.3// @description 屏蔽网页上所有的图片,方便摸鱼// @match *://*/*// @grant none// @license MIT// ==/UserScript==(function() {'use strict';// 创建一个 MutationObserver 实例const observer = new MutationObserver(function(mutations) {mutations.forEach(function(mutation) {// 获取到所有的 img 标签const images = mutation.target.getElementsByTagName('img');// 将所有的 img 标签隐藏for (let i = 0; i < images.length; i++) {images[i].style.display = 'none';}});});// 开始监听 body 节点,用于处理 js 新加载出来的图片observer.observe(document.body, { childList: true, subtree: true });})();