Blocked warning @ De Telegraaf
// ==UserScript==
// @name Block adblocker warnings De Telegraaf
// @namespace https://marthijnhoiting.com/
// @author Marthijn Hoiting
// @include http://*.telegraaf.nl/*
// @version 0.2
// @grant none
// @license Copyright by Marthijn Hoiting
// @run-at document-start
// @description Blocked warning @ De Telegraaf
// ==/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('.popup-content { display: none !important; }');