YouTube scroll to top on home button

Scroll page to top when press on YouTube logo!

作者のサイトでサポートを受ける。または、このスクリプトの質問や評価の投稿はこちら通報はこちらへお寄せください
// ==UserScript==
// @name         YouTube scroll to top on home button
// @namespace    http://tampermonkey.net/
// @version      1.0.0
// @license      MIT
// @description  Scroll page to top when press on YouTube logo!
// @author       alezhu
// @match        https://www.youtube.com/
// @icon         https://www.google.com/s2/favicons?sz=64&domain=youtube.com
// @grant        none
// @homepageURL    https://github.com/alezhu/youtube-scroll-to-top-on-press-logo
// @supportURL     https://github.com/alezhu/youtube-scroll-to-top-on-press-logo/issues
// ==/UserScript==

(function () {
  "use strict";

  let elLogo = document.getElementById("logo");
  elLogo &&
    elLogo.addEventListener &&
    elLogo.addEventListener("click", function () {
      console.log("Go to TOP!!!");
      window.scrollTo(0, 0);
    });
})();