Greasy Fork is available in English.
自动隐藏动漫花园(share.dmhy.org)头部广告
// ==UserScript==
// @name 动漫花园(share.dmhy.org)头部广告隐藏 2021年3月17日
// @namespace https://or2.fun
// @version 0.5
// @description 自动隐藏动漫花园(share.dmhy.org)头部广告
// @author Freeeeeedom
// @match *://share.dmhy.org/*
// @match *://*.dmhy.org/*
// @match *://dmhy.org/*
// @grant none
// @run-at document-idle
// ==/UserScript==
$(document).ready(function(){
$('#1280_adv img').hide();
$('#1280_ad a img').hide();
$('#pkpk').hide();
$(".ad").remove();
$("#before-comment").remove();
$("body > div.container:nth-child(1) > div.bg > div.main:nth-child(2) > div.topics_bk.ui-corner-all:nth-child(11) > div.topic-main:nth-child(2) > div.topic-title.box.ui-corner-all:nth-child(1) > div.info.relative-goods").remove();
})