NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name MOFOS Fixer // @namespace http://your.homepage/ // @version 0.1 // @description Removes time limitation on trailer videos // @author eSkiSo // @match http://www.mofos.com/tour/scene/* // @grant none // @run-at document-end // ==/UserScript== function removeElementsByClass(className){ var elements = document.getElementsByClassName(className); while(elements.length > 0){ elements[0].parentNode.removeChild(elements[0]); } } setTimeout(function(){ document.getElementById('trailer-player').id = "newId"; document.getElementById('newId').style.height="100%"; removeElementsByClass('forbidden'); }, 5000);