NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name LookTV css // @namespace Hawk // @version 0.2 // @description LookTV player width & height to 100% // @author Hawk // @match https://www.looktv.mn/ // @grant none // @license MIT // ==/UserScript== (function() { 'use strict'; document.querySelector("#player_wrap").style.width = "100%" document.querySelector("#player_wrap").style.height = "90%" })();