Darkumbra anti-adblock patch

Patches Darkumbra.net to remove the need to disable your adblocker to view posted links.

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

// ==UserScript==
// @name    Darkumbra anti-adblock patch
// @namespace    Darkumbra
// @author       4channel Pirate
// @description Patches Darkumbra.net to remove the need to disable your adblocker to view posted links.
// @version 0.1
// @grant    none
// @include  https://darkumbra.net/forums/topic/*
// @run-at   document-start
// ==/UserScript==
var txtstr = /Adblock/i;

window.addEventListener('beforescriptexecute', function(e) {
    if(txtstr.test(e.target.text)){
        e.stopPropagation();
        e.preventDefault();
        revealContent();
    }
}, true);

function revealContent() {
    var elems = document.querySelectorAll(".bimHiddenBox");
    [].forEach.call(elems, function(el) {
        el.classList.remove("ipsHide");
    });
}