Greasy Fork is available in English.

Abs0rb.me Ad Block

Bypass the abs0rb.me adblock blocking!

2016-04-28 يوللانغان نەشرى. ئەڭ يېڭى نەشرىنى كۆرۈش.

// ==UserScript==
// @name         Abs0rb.me Ad Block
// @namespace    http://abs0rb.me/
// @version      0.1
// @description  Bypass the abs0rb.me adblock blocking!
// @author       DaFudgeWizzad
// @match        http://abs0rb.me/*
// @run-at       document-end
// @grant        none
// ==/UserScript==

Element.prototype.remove = function() {
    this.parentElement.removeChild(this);
}
NodeList.prototype.remove = HTMLCollection.prototype.remove = function() {
    for(var i = this.length - 1; i >= 0; i--) {
        if(this[i] && this[i].parentElement) {
            this[i].parentElement.removeChild(this[i]);
        }
    }
}

$(document).ready(function(){
    $('#mainModal').modal('hide');
    document.getElementById("nick").disabled = false;
    document.getElementById("clanPicker").disabled = false;
    setserver("69.195.128.162:1501"); ServerPlayers(); ServerTotal();
});