Refresh mining statics every minute

Refresh mining statics every minute.

  1. // ==UserScript==
  2. // @name Refresh mining statics every minute
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.1
  5. // @description Refresh mining statics every minute.
  6. // @author Santeri Hetekivi
  7. // @match https://*.2miners.com/account/*
  8. // @match https://*.miningpoolhub.com/index.php?page=dashboard
  9. // @match https://*.ethermine.org/miners/*/dashboard
  10. // @grant none
  11. // ==/UserScript==
  12.  
  13. (function() {
  14. 'use strict';
  15.  
  16. setTimeout(
  17. function()
  18. {
  19. location.reload();
  20. },
  21. 60000
  22. );
  23. })();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址