油猴脚本:移除带有'z-index: 1001' 的div元素
// ==UserScript== // @name 移除带有'z-index: 1001' 的div元素 // @namespace http://tampermonkey.net/ // @version 1.0 // @description 移除网页中带有style属性且包含'z-index: 1001' 的div元素 // @author Your name // @match https://example.com/* // @grant none // ==/UserScript==
(function() { 'use strict';
// 获取所有带有style属性的div元素
const divs = document.querySelectorAll('div[style]');
// 遍历每个div元素
divs.forEach(div => {
// 检查style属性中是否包含z-index: 1001
const styles = div.getAttribute('style');
if (styles.includes('z-index: 1001;')) {
// 移除该div元素
div.remove();
}
});
})();
原文地址: https://www.cveoy.top/t/topic/otqD 著作权归作者所有。请勿转载和采集!