Greasy Fork

Greasy Fork is available in English.

Bunpro: Toggle Furigana of Review Sentence (Review 2.0)

Toggle review sentence furigana with ArrowUp Key while answer input field is focused. Fixed for use with 2.0 reviews on 12 Apr 2023.

当前为 2023-04-12 提交的版本,查看 最新版本

// ==UserScript==
// @name         Bunpro: Toggle Furigana of Review Sentence (Review 2.0)
// @namespace    http://tampermonkey.net/
// @version      1.0.1
// @description  Toggle review sentence furigana with ArrowUp Key while answer input field is focused. Fixed for use with 2.0 reviews on 12 Apr 2023.
// @author       Jackalopalen (originally alamin)
// @match        *bunpro.jp/*
// @grant        none
// @require      http://greasyfork.icu/scripts/446257-waitforkeyelements-utility-function/code/waitForKeyElements%20utility%20function.js?version=1059316
// @require      https://code.jquery.com/jquery-2.1.4.min.js
// ==/UserScript==

(function() {
    'use strict';
 
    waitForKeyElements(".bp-quiz-console", function (e) {
        $("#manual-input").on("keyup", function (event) {
            if (event.key === "ArrowUp") {
                $("body").attr('data-furigana', $("body").attr('data-furigana')=="false");
            }
        });
    });
})();