NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name C2 Atom Auto Refresh // @namespace sirsolutions.com // @version 0.1 // @description Par Jonathan // @include *support.sirsolutions.com/* // @author You // @grant none // ==/UserScript== (function() { 'use strict'; // Your code here... var i = setInterval(function() { $(function(){ document.getElementsByClassName("button button-col1 ticket-create-notify-tooltip")[0].click(); }); }, 10000); })();