Score-Tolerance

SDVX, CHUNITHM, オンゲキの譜面保管所で許容を表示します。

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         Score-Tolerance
// @namespace    http://tampermonkey.net/
// @version      2.2
// @description  SDVX, CHUNITHM, オンゲキの譜面保管所で許容を表示します。
// @description  (譜面保管所のデータを使用しているので、SDVXのデータは最新でない可能性があります)
// @author       null
// @include      *sdvx.in*
// @icon         
// @grant        none
// @require http://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js
// ==/UserScript==

(function () {
  'use strict';
  window.onload = function () {
    let script = document.createElement('script');
    script.setAttribute('src', 'https://sto9.github.io/Score-Tolerance/function.js');
    document.head.appendChild(script);
    script.addEventListener('load', function () {
      UpdateTable();
    });
  };
})();