Greasy Fork

Greasy Fork is available in English.

Bunpro: JLPT Level Indicator

Adds a JLPT level indicator in reviews.

当前为 2018-12-06 提交的版本,查看 最新版本

// ==UserScript==
// @name         Bunpro: JLPT Level Indicator
// @namespace    http://tampermonkey.net/
// @version      0.3.1
// @description  Adds a JLPT level indicator in reviews.
// @author       Kumirei
// @include      http://bunpro.jp*
// @include      https://bunpro.jp*
// @require      http://greasyfork.icu/scripts/5392-waitforkeyelements/code/WaitForKeyElements.js?version=115012
// @require      http://greasyfork.icu/scripts/370623-bunpro-helpful-events/code/Bunpro:%20Helpful%20Events.js?version=615700
// @grant        none
// ==/UserScript==

(function() {
		$('HTML')[0].addEventListener('quiz-page', function() {
				$('.srs-tracker__holder').after('<div id="JLPTlevel" class="review__stats"></div>');
				$('HTML')[0].addEventListener('new-review-item', function(e) {
						$('#JLPTlevel')[0].innerText = $('.level_lesson_info')[0].innerText.split(':')[0];
				});
		});
})();