gadeji / New Userscript

// ==UserScript==
// @name         New Userscript
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  try to take over the world!
// @author       You
// @license      MIT
// @include      https://www.youtube.com/watch?*
// @grant        none
// ==/UserScript==

function rola(){
    if(scrollY != 104){
        scrollTo(0,104);
    }
    setTimeout(rola, 100);
}
rola();