Bitminer Status++

try to take over the world!

  1. // ==UserScript==
  2. // @name Bitminer Status++
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.1
  5. // @description try to take over the world!
  6. // @author You
  7. // @match https://bitminer.io/*
  8. // @grant none
  9. // ==/UserScript==
  10.  
  11. (function() {
  12. 'use strict';
  13. setInterval(function(){
  14. var mined = window.frames[0].$("#stext").text();
  15. document.title = mined;
  16. }, 3000);
  17. // Your code here...
  18. })();