您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Greasy Fork is available in English.
Adds a JLPT level indicator in reviews.
当前为
// ==UserScript== // @name Bunpro: JLPT Level Indicator // @namespace http://tampermonkey.net/ // @version 0.1 // @description Adds a JLPT level indicator in reviews. // @author Kumirei // @match https://bunpro.jp/study // @require http://greasyfork.icu/scripts/5392-waitforkeyelements/code/WaitForKeyElements.js?version=115012 // @grant none // ==/UserScript== (function() { $('#reviews').after('<div id="JLPTlevel"></div>'); $('head').append('<style>#reviews {height: initial !important;} #JLPTlevel {line-height: 0px; margin-bottom: 25px;}</style>'); waitForKeyElements('.level_lesson_info', function(e) { $('#JLPTlevel')[0].innerText = $('.level_lesson_info')[0].innerText.split(':')[0]; }); })();