// ==UserScript== // @name Bunpro: Toggle Furigana of Review Sentence // @namespace http://tampermonkey.net/ // @version 1.0.0 // @description Toggle review sentence furigana with ArrowUp Key while answer input field is focused. // @author alamin // @match *bunpro.jp/* // @grant none // @require https://greasyfork.org/scripts/5392-waitforkeyelements/code/WaitForKeyElements.js?version=115012 // @downloadURL none // ==/UserScript== (function() { 'use strict'; waitForKeyElements(".study-question-japanese", function (e) { $("#study-answer-input").on("keyup", function (event) { if (event.key === "ArrowUp") { $(e[0]).find("rt").toggleClass("hide-furigana"); } }); }); })();