Hide Solved Problems on JOI Difficulty Table

https://joi.goodbaton.com/でACした問題を非表示にできる

スクリプトをインストールするには、Tampermonkey, GreasemonkeyViolentmonkey のような拡張機能のインストールが必要です。

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

スクリプトをインストールするには、TampermonkeyViolentmonkey のような拡張機能のインストールが必要です。

スクリプトをインストールするには、TampermonkeyUserscripts のような拡張機能のインストールが必要です。

このスクリプトをインストールするには、Tampermonkeyなどの拡張機能をインストールする必要があります。

このスクリプトをインストールするには、ユーザースクリプト管理ツールの拡張機能をインストールする必要があります。

(ユーザースクリプト管理ツールは設定済みなのでインストール!)

このスタイルをインストールするには、Stylusなどの拡張機能をインストールする必要があります。

このスタイルをインストールするには、Stylus などの拡張機能をインストールする必要があります。

このスタイルをインストールするには、Stylus tなどの拡張機能をインストールする必要があります。

このスタイルをインストールするには、ユーザースタイル管理用の拡張機能をインストールする必要があります。

このスタイルをインストールするには、ユーザースタイル管理用の拡張機能をインストールする必要があります。

このスタイルをインストールするには、ユーザースタイル管理用の拡張機能をインストールする必要があります。

(ユーザースタイル管理ツールは設定済みなのでインストール!)

このスクリプトの質問や評価の投稿はこちら通報はこちらへお寄せください
// ==UserScript==
// @name         Hide Solved Problems on JOI Difficulty Table
// @version      1.0
// @description  https://joi.goodbaton.com/でACした問題を非表示にできる
// @author       euglenese
// @match        https://joi.goodbaton.com/*
// @namespace https://greasyfork.org/users/201019
// ==/UserScript==

$("#btn").after('  <button id="ac_shita_problem_wo_hide" size="20" type="button">ACした問題を隠す</button>');
var ac_shita_problem_wo_hide_shiteiruka = 0;
$("#ac_shita_problem_wo_hide").click(function(){
    if(!ac_shita_problem_wo_hide_shiteiruka){
        $("#ac_shita_problem_wo_hide").text("ACした問題を表示する");
    }else{
        $("#ac_shita_problem_wo_hide").text("ACした問題を隠す");
    }
    $(".ac-none").parent().toggle();
    ac_shita_problem_wo_hide_shiteiruka ^= 1;
});