hidePlayer

Hide player

// ==UserScript==
// @name         hidePlayer
// @namespace    https://github.com/yegorgunko/shikme-tools
// @version      0.3
// @description  Hide player
// @author       Yegor Gunko
// @match        https://shikme.ru/
// @icon         https://shikme.ru/default_images/icon.png?v=1528136794
// @grant        none
// ==/UserScript==
const hidePlayer=()=>{const e=document.getElementById("player"),t=document.getElementById("warp_show_chat");t.style.height=`${parseFloat(window.getComputedStyle(t).getPropertyValue("height"))+parseFloat(window.getComputedStyle(e).getPropertyValue("height"))}px`,e.style.display="none"};document.addEventListener("DOMContentLoaded",hidePlayer(),!1);