NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name mynoise.net reloader // @namespace mynoise.net // @description reload frames in mynoise.net once every 60secs // @include https://mynoise.net/superGenerator* // @include http://mynoise.net/superGenerator* // @require https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js // @version 1.01 // @grant none // ==/UserScript== $(document).ready(function(){ var to = 0; $('.superGen iframe').each(function(idx){ // console.log($(this).contents().find('html').html()); var $frm = $(this); to = to + 60000; setTimeout(function(){ $frm.ready(function(){ $frm.attr('src', function (i, val) { return val;}); }); }, to); }); });