NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript==
// @name Keep Youtube Video Controls Always Visible Underneath/Below Player
// @namespace http://tampermonkey.net/
// @version 0.2
// @description Keep Youtube Video Controls Always Visible Underneath Player Like In The Good Old Days
// @author BacoNCatBug
// @match *://*.youtube.com/*
// @grant none
// @licence MIT
// ==/UserScript==
(function() {
'use strict';
setTimeout(function(){
let video = document.querySelector("#movie_player")
setInterval(function(){
video.dispatchEvent(new Event('mousemove'));
document.getElementById('player-container-inner').style.paddingBottom = '51px';
//document.getElementById('player-theater-container').style.paddingBottom = '51px';
},100);
},1500)
})();