Youtube Subscriptions infinite

https://www.reddit.com/r/GreaseMonkey/comments/3kvo24/request_infinate_scroll_for_youtube/

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Greasemonkey 油猴子Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Userscripts ,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展后才能安装此脚本。

(我已经安装了用户脚本管理器,让我安装!)

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

(我已经安装了用户样式管理器,让我安装!)

// ==UserScript==
// @name        Youtube Subscriptions infinite
// @author      /r/defproc
// @namespace   https://www.reddit.com/r/GreaseMonkey/comments/3kvo24/request_infinate_scroll_for_youtube/?solution
// @description https://www.reddit.com/r/GreaseMonkey/comments/3kvo24/request_infinate_scroll_for_youtube/
// @include     https://www.youtube.com/feed/subscriptions
// @version     1
// @grant       none
// ==/UserScript==

window.addEventListener("scroll", function(){
  var button = document.querySelectorAll('.browse-items-load-more-button');
  var getTop = function(el){
    return el.offsetParent ? el.offsetTop + getTop(el.offsetParent) : el.offsetTop;
  };
  if(button.length === 0) return;
  if(window.scrollY > (getTop(button[0]) - (window.innerHeight * 0.9))) {
    button[0].click();
  }
}, false);