button clicker

presses a button

目前为 2019-07-15 提交的版本。查看 最新版本

// ==UserScript==
// @name         button clicker
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  presses a button
// @author       twarped
// @include      https://*/*
// @include      http://*/*
// @grant        none
// ==/UserScript==
// id="next"

setInterval(function($){ document.getElementById('next').click('click'); },15000);