NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name Show Video Controls & Max Width // @version 0.1 // @description Show context menu controls and maximize video player width // @author Fury Zenblade#1337 // @match http*://*.ardmediathek.de/video/* // @icon https://www.ardmediathek.de/favicon.ico // @grant GM_addStyle // @license MIT // @updateURL https://openuserjs.org/meta/FuryZen/Show_Video_Controls_Max_Width.meta.js // ==/UserScript== (function() { 'use strict'; //document.getElementsByClassName("tDSNQ")[0].style.maxWidth = "none"; //console.log("Changed max width!"); GM_addStyle(".tDSNQ { max-width: none !important }"); window.addEventListener("contextmenu", function(event) { event.stopImmediatePropagation(); }, true); })();