Greasy Fork is available in English.
一无是处!
当前为
// ==UserScript==
// @name 豆瓣模拟点击加载更多
// @namespace http://tampermonkey.net/
// @version 0.1
// @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 - 100) {
$('a.more').trigger("click"); //模拟点击更多内容
}
}
window.addEventListener("scroll", ScrollEvent, false);
})();