Score-Tolerance

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

K instalaci tototo skriptu si budete muset nainstalovat rozšíření jako Tampermonkey, Greasemonkey nebo Violentmonkey.

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

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Violentmonkey.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Userscripts.

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

K instalaci tohoto skriptu si budete muset nainstalovat manažer uživatelských skriptů.

(Už mám manažer uživatelských skriptů, nechte mě ho nainstalovat!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(Už mám manažer uživatelských stylů, nechte mě ho nainstalovat!)

// ==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();
    });
  };
})();