您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
It removes the header in all pages of www.ddlitalia.biz
// ==UserScript== // @name ddlitalia.biz header remover // @description It removes the header in all pages of www.ddlitalia.biz // @match https://www.ddlitalia.biz/* // @grant none // @version 1.1 // @author SH3LL // @namespace https://gf.qytechs.cn/users/762057 // ==/UserScript== setTimeout(function() { let divs = document.querySelectorAll('div[style="padding:15px;"]'); // Itera sugli elementi selezionati e rimuovili uno per uno divs.forEach(function(div) { div.remove(); }); let h3Elements = document.querySelectorAll('h3[style*="background: url(\\"https://www.ddlitalia.biz/templates/ddlitalia/images/maintitle.png\\")"]'); // Itera sugli elementi selezionati e rimuovili uno per uno h3Elements.forEach(function(h3) { h3.remove(); }); // Seleziona tutti gli elementi <hr> senza alcuna proprietà al loro interno let hrElements = document.querySelectorAll('hr:not([color]):not([size]):not([noshade])'); // Itera sugli elementi selezionati e rimuovili uno per uno hrElements.forEach(function(hr) { hr.remove(); }); }, 500);
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址