takepoint.io gamefact/leaderboard script

updates the leaderboard and gamefact automatically

当前为 2021-06-04 提交的版本,查看 最新版本

  1. // ==UserScript==
  2. // @name takepoint.io gamefact/leaderboard script
  3. // @namespace http://tampermonkey.net/
  4. // @version 1.1
  5. // @description updates the leaderboard and gamefact automatically
  6. // @author You
  7. // @match https://takepoint.io
  8. // @grant none
  9. // ==/UserScript==
  10.  
  11. (function() {
  12. 'use strict';
  13.  
  14. setInterval(function(){gameStateRequest.open("GET","https://stats.takepoint.io/gameState",!0),gameStateRequest.send();},2000)
  15.  
  16. })