YOUTUBE FUCK HTML5

just always focus on media player, and keys work correct

Устаревшая версия за 09.12.2017. Перейдите к последней версии.

// ==UserScript==
// @name         YOUTUBE FUCK HTML5
// @namespace    http://tampermonkey.net/
// @version      0.5
// @description  just always focus on media player, and keys work correct
// @author       Rederick Asher
// @match        *://*.youtube.com/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
setInterval(function(){
//  ytp-volume-panel
	if(document.getElementsByClassName("ytp-chrome-bottom")[0].contains(document.activeElement)){
//	   document.activeElement.style.border="2px solid red";
	   document.getElementById("movie_player").focus();
	 }
},500);
})();