AtCoderRecentGraph

レーティンググラフを最近のだけにするボタンを追加

Dovrai installare un'estensione come Tampermonkey, Greasemonkey o Violentmonkey per installare questo script.

You will need to install an extension such as Tampermonkey to install this script.

Dovrai installare un'estensione come Tampermonkey o Violentmonkey per installare questo script.

Dovrai installare un'estensione come Tampermonkey o Userscripts per installare questo script.

Dovrai installare un'estensione come ad esempio Tampermonkey per installare questo script.

Dovrai installare un gestore di script utente per installare questo script.

(Ho già un gestore di script utente, lasciamelo installare!)

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

(Ho già un gestore di stile utente, lasciamelo installare!)

// ==UserScript==
// @name         AtCoderRecentGraph
// @namespace    https://twitter.com/merom686
// @version      1.0
// @description  レーティンググラフを最近のだけにするボタンを追加
// @author       merom686
// @match        https://atcoder.jp/users/*
// @grant        none
// ==/UserScript==

(function(){
    if (typeof rating_history === 'undefined' || rating_history.length < 2) return;
    let rating_history_original = rating_history;
    let k = Math.min(64, Math.ceil(rating_history.length / 2));

    let button = document.createElement('button');
    button.className = 'btn btn-default';
    button.innerText = 'recent';
    button.onclick = () => {
        if (rating_history.length == k) {
            rating_history = rating_history_original;
        } else {
            rating_history = rating_history.slice(-k);
        }
        const e = new CustomEvent('load');
        window.dispatchEvent(e);
    };
    let a = document.getElementById('rating-graph-expand');
    a.parentNode.insertBefore(button, a.nextSibling);
})();