Enhancer for YouTube™에 대한 리뷰
Enhancer for YouTube™ 제작자: Max RF
Firefox 사용자 13908726 님의 리뷰
5점 만점에 4점
Firefox 사용자 13908726 님, 8년 전If you use enlarged player that covers the whole viewport and scroll away, there's no option to perfectly focus on the player again. I wrote this simple JS, so when you middle click anywhere on the page it scrolls right where the player is (should add some functionality that allows that by default in your addon)
document.getElementById("content").addEventListener("auxclick", function(event){
if(event.button == 1)
document.getElementById("player-theater-container").scrollIntoView();
});
document.getElementById("content").addEventListener("auxclick", function(event){
if(event.button == 1)
document.getElementById("player-theater-container").scrollIntoView();
});