NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name VRT NU Video Player full screen livestream // @namespace http://timbroddin.be // @version 1.0 // @description try to take over the world! // @author Tim Broddin // @match https://www.vrt.be/vrtnu/livestream/ // @grant none // @licence MIT // ==/UserScript== (function () { 'use strict'; window.onload = function () { document.querySelectorAll('.livestream__epg').forEach(e => { e.remove(); }); document.querySelector('.livestream__player').style.width = '100%' } })();