AtCoder Graph Time

レーティンググラフの横軸を日付から回数に変更します

As of 09.11.2022. See ბოლო ვერსია.

  1. // ==UserScript==
  2. // @name AtCoder Graph Time
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.1
  5. // @description レーティンググラフの横軸を日付から回数に変更します
  6. // @author ogawakun
  7. // @match https://atcoder.jp/users/*
  8. // @grant none
  9. // ==/UserScript==
  10.  
  11. $(function() {
  12. "use strict";
  13. const size = rating_history.length;
  14. const first_time = rating_history[0].EndTime;
  15. const all_time = rating_history[size - 1].EndTime - first_time;
  16. for (let i = 0; i < size; i++) {
  17. rating_history[i].EndTime = first_time + all_time / size * i;
  18. }
  19. })
  20. ();