您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Automatically loads all workouts for any One Peloton / Peloton Cycle profile. Infinite scrolling, no need to click "more workouts". Come join the largest Peloton community in the world (and member-run) at www.reddit.com/r/pelotoncycle, where we compare workout stats, join large group rides and trade tips with 86,000+ members worldwide!
// ==UserScript== // @name OnePeloton.com Peloton Cycle Infinite Scroll // @namespace http://tampermonkey.net/ // @version 0.2 // @description Automatically loads all workouts for any One Peloton / Peloton Cycle profile. Infinite scrolling, no need to click "more workouts". Come join the largest Peloton community in the world (and member-run) at www.reddit.com/r/pelotoncycle, where we compare workout stats, join large group rides and trade tips with 86,000+ members worldwide! // @author Matt Taylor // @match https://members.onepeloton.com/* // @require http://code.jquery.com/jquery-latest.js // ==/UserScript== $("document").ready(function() { setInterval(function() { $('[data-test-id="moreWorkoutsButton"]').trigger('click');},1000); });