Score-Tolerance

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

Du musst eine Erweiterung wie Tampermonkey, Greasemonkey oder Violentmonkey installieren, um dieses Skript zu installieren.

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

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

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

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

Sie müssten eine Skript Manager Erweiterung installieren damit sie dieses Skript installieren können

(Ich habe schon ein Skript Manager, Lass mich es installieren!)

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.

(I already have a user style manager, let me install it!)

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