presses a button
当前为 
// ==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);