// ==UserScript== // @name 删除小刀娱乐网广告x6d.com/x6g.com // @namespace http://tampermonkey.net/ // @version 1.02 // @description Remove all elements with the class 'addd' immediately upon script load // @author You // @match https://x6d.com/ // @match https://www.x6g.com/ // @icon https://www.google.com/s2/favicons?sz=64&domain=x6d.com // @license All Rights Reserved; https://example.com/license // @grant none // @downloadURL none // ==/UserScript== (function() { 'use strict'; // 获取所有具有类名为 'addd' 的元素 var elementsToRemove = document.querySelectorAll('.addd'); // 遍历并删除这些元素 elementsToRemove.forEach(function(el) { if (el.parentNode) { el.parentNode.removeChild(el); } }); })();