Greasy Fork is available in English.
仅适用于漫画区右下角广告
当前为
// ==UserScript==
// @name 去除动漫之家漫画区右下角广告
// @namespace http://tampermonkey.net/
// @version 1.0
// @description 仅适用于漫画区右下角广告
// @author 自律人形Alpha
// @match *://manhua.dmzj.com/*
// @match *://www.dmzj.com/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
var i
var divs = document.getElementsByTagName('div');
//消除广告本体
for (i = 0; i < divs.length; i++) {
if (divs[i].style.width == "320px" && divs[i].style.height == "270px")
{divs[i].parentNode.removeChild(divs[i])}
//{divs[i].style.display = "none"}
//{console.log(divs[i])}
}
//消除广告横条
var note = document.getElementById('note');
if(note !== null)
{note.parentNode.removeChild(note)}
//消除code及其按钮
var ad_bottom_code = document.getElementsByClassName('ad_bottom_code')[0];
if(ad_bottom_code !== null)
{ad_bottom_code.parentNode.removeChild(ad_bottom_code)}
})();