Dailymail remove video ad

Remove video ad

// ==UserScript==
// @name         Dailymail remove video ad
// @namespace    http://www.dailymail.co.uk/
// @version      0.1
// @description  Remove video ad
// @author       Foliovision
// @match        https://www.dailymail.co.uk/*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=tampermonkey.net
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    setInterval(function(){
        document.getElementById('chromelessPlayer').outerHTML = "";
    },500);
})();