Greasy Fork is available in English.

Block adblocker warnings buienradar

Blocked warning @ buienradar.nl

// ==UserScript==
// @name         Block adblocker warnings buienradar
// @namespace    https://marthijnhoiting.com/
// @author       Marthijn Hoiting
// @include      https://*.buienradar.nl/*
// @version      0.3
// @grant        none
// @license      Copyright by Marthijn Hoiting
// @run-at       document-start
// @description  Blocked warning @ buienradar.nl
// ==/UserScript==
/* jshint -W097 */
'use strict';

function addGlobalStyle(css) {
    var head, style;
    head = document.getElementsByTagName('head')[0];
    if (!head) { return; }
    style = document.createElement('style');
    style.type = 'text/css';
    style.innerHTML = css;
    head.appendChild(style);
}

addGlobalStyle('.bblocked { display: none !important; }');