button clicker

presses a button

  1. // ==UserScript==
  2. // @name button clicker
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.1.2
  5. // @description presses a button
  6. // @author twarped
  7. // @include https://*/*
  8. // @include http://*/*
  9. // @exclude *docs.google.com/*/*
  10. // @exclude *sites.google.com/*/edit
  11. // @grant none
  12. // ==/UserScript==
  13. // id="next"
  14.  
  15. setInterval(function($){ document.getElementById('next').click('click'); },15000);