// ==UserScript==
// @name           SrollToTop
// @description    SrollToTop user script
// @include        https://yandex.ru/*
// @include        https://*.google.com/*
// @include        https://*.google.ru/*
// @include        https://*.livejournal.com/*
// @include        https://mmo-dev.info/*
// @version        1.0
// ==/UserScript==
var btn = document.createElement("div");
btn.style.cssText = "background:rgba(0,0,0,0.3);position:fixed;left:0;top:0;width:50px;height:100%;cursor:pointer;z-index:99999;font-size:11px;color:#fff;box-sizing:border-box;padding:10px;";
btn.innerText = "To top";
btn.addEventListener("click", function(e) {
    e.preventDefault();
    document.body.scrollTop = 0;
    document.documentElement.scrollTop = 0;
});
setTimeout(function() {
    window.document.body.appendChild(btn);
    window.addEventListener("scroll", function() {
        if (document.body.scrollTop > 20 || document.documentElement.scrollTop > 20) {
            btn.style.display = "block";
        } else {
            btn.style.display = "none";
        }
    });
}, 1000);