您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Greasy Fork pagine avanzamento automatico
当前为
// ==UserScript== // @name Greasy Fork autoclick pagine // @namespace https://greasyfork.org/users/237458 // @description Greasy Fork pagine avanzamento automatico // @match https://greasyfork.org/* // @match https://sleazyfork.org/* // @version 0.2 // @noframes // @author figuccio // @run-at document-start // @grant GM_addStyle // @require https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js // ==/UserScript== //passa alla pagina successiva richiede jquery $(window).scroll(function() { if($(window).scrollTop() + $(window).height() == $(document).height()) { document.querySelector("body > div.width-constraint > div > div.sidebarred-main-content > div.pagination > a.next_page").click(); } });