Greasy Fork is available in English.

豆瓣模拟点击加载更多

一无是处!

// ==UserScript==
// @name         豆瓣模拟点击加载更多
// @namespace    http://tampermonkey.net/
// @version      0.3
// @description  一无是处!
// @author       nyzx0322
// @match       https://movie.douban.com/*
// @grant        none
// ==/UserScript==

(function() {

function ScrollEvent() {
        var wScrollY = window.scrollY; // 当前滚动条位置
        var wInnerH = window.innerHeight; // 设备窗口的高度(不会变)
        var bScrollH = document.body.scrollHeight; // 滚动条总高度
        if (wScrollY + wInnerH >= bScrollH) {
            document.querySelectorAll(".more")[0].click();
        }
    }

window.addEventListener("scroll", ScrollEvent, false);

})();