public
Description: Periodically refresh the Activity Overview screen of a beanstalk app project in the Fluid SSB
Homepage: http://userscripts.org/scripts/show/26267
Clone URL: git://github.com/duncanbeevers/fluid_beanstalk_activity_refresh.git
fluid_beanstalk_activity_refresh / beanstalk_activity_reload.user.js
100644 16 lines (15 sloc) 0.509 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// ==UserScript==
// @name Periodically refresh Beanstalk Activity overview
// @namespace http://www.dweebd.com/
// @description Refreshes the Beanstalk overview page every 10 minutes
// @author Duncan Beevers
// @homepage http://www.dweebd.com/
// ==/UserScript==
 
(function () {
if (window.fluid && window.location.href.match(/beanstalkapp.com\/\w+[^\/]$/)) {
  var minutes = (60 * 1000);
  window.setTimeout(function() {
    window.location.reload();
  }, 10 * minutes );
}
})();