// ==UserScript== // @name New Userscript // @namespace http://tampermonkey.net/ // @version 0.1 // @description try to take over the world! // @author You // @match https://steamcompanion.com/gifts/* // @grant none // @downloadURL none // ==/UserScript== /* jshint -W097 */ 'use strict'; $(document).ready(function() { setInterval(function(){ var btn = $("#more_entries"); for(var x = 0 ; x < 50 ; x++ ) { btn.click(); } setInterval(function(){ window.location.reload(false); }, 200000); },10000); });