Anidub del man

Removes del man

当前为 2016-04-12 提交的版本,查看 最新版本

// ==UserScript==
// @name        Anidub del man
// @description Removes del man
// @namespace Stop script ogonek
// @include     http://online.anidub.com/*
// @include     https://online.anidub.com/*
// @version     1.4.1
// @grant       none
// ==/UserScript==

var script = document.createElement('script'); 
script.type = "text/javascript"; 
script.innerHTML = "function ogonekstart1() {}";
document.getElementsByTagName('head')[0].appendChild(script);

var style = document.createElement('style');
style.type = 'text/css';
style.appendChild(document.createTextNode('.background {background: none!important;}'))
document.head.appendChild(style);

var a = document.querySelectorAll('.background > div');
var words = /brrand|ninjaworld|randomizer/;
for (var i=0;i<a.length;i++) if (words.test(a[i].innerHTML))
    a[i].parentNode.removeChild(a[i]);

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址