Lesson Remover

Removes the Lessons number on Wanikani when the lowest item percentage is lower than 75%.

이 스크립트를 설치하려면 Tampermonkey, Greasemonkey 또는 Violentmonkey와 같은 확장 프로그램이 필요합니다.

이 스크립트를 설치하려면 Tampermonkey와 같은 확장 프로그램을 설치해야 합니다.

이 스크립트를 설치하려면 Tampermonkey 또는 Violentmonkey와 같은 확장 프로그램이 필요합니다.

이 스크립트를 설치하려면 Tampermonkey 또는 Userscripts와 같은 확장 프로그램이 필요합니다.

이 스크립트를 설치하려면 Tampermonkey와 같은 확장 프로그램이 필요합니다.

이 스크립트를 설치하려면 유저 스크립트 관리자 확장 프로그램이 필요합니다.

(이미 유저 스크립트 관리자가 설치되어 있습니다. 설치를 진행합니다!)

이 스타일을 설치하려면 Stylus와 같은 확장 프로그램이 필요합니다.

이 스타일을 설치하려면 Stylus와 같은 확장 프로그램이 필요합니다.

이 스타일을 설치하려면 Stylus와 같은 확장 프로그램이 필요합니다.

이 스타일을 설치하려면 유저 스타일 관리자 확장 프로그램이 필요합니다.

이 스타일을 설치하려면 유저 스타일 관리자 확장 프로그램이 필요합니다.

이 스타일을 설치하려면 유저 스타일 관리자 확장 프로그램이 필요합니다.

(이미 유저 스타일 관리자가 설치되어 있습니다. 설치를 진행합니다!)

// ==UserScript==
// @name         Lesson Remover
// @namespace    http://tampermonkey.net/
// @version      0.3
// @description  Removes the Lessons number on Wanikani when the lowest item percentage is lower than 75%.
// @author       Sinom
// @match        https://www.wanikani.com/*
// @grant        none
// ==/UserScript==

(function() {

    let lowestPercentage = $('.low-percentage.kotoba-table-list table td span.pull-right').html();
    if (lowestPercentage != null){
        if (Number(lowestPercentage.substring(0,1))<75) {
            replace();
        }
    }
    function replace() {
        let row = $('.recent-unlocks').closest(".row");
        $('.navigation-shortcut:first-child a span').html('0');
        $('.navigation-shortcut:first-child a span').css('background', '#aaa');
        $('.recent-unlocks').parent().css("display", "none");
        $('.low-percentage').parent().addClass("span6");
        $('.recent-retired').parent().addClass("span6");
        console.log($('.recent-unlocks').closest(".row"));
    }
})();