NHK Web Cheaty

Shows the furigana when you click a Kanji on NHK WEB Easy.

// ==UserScript==
// @name         NHK Web Cheaty
// @namespace    http://tampermonkey.net/
// @version      0.3
// @description  Shows the furigana when you click a Kanji on NHK WEB Easy.
// @author       You
// @match        https://www3.nhk.or.jp/news/easy/*
// @grant        none
// @require      https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js
// ==/UserScript==

(function() {

    $('head').append('<style>ruby.show-rt rt {visibility:visible !important; display:block !important; } ruby.show-rt {color:blue;} </style>');

    $('ruby').click(function(e) {
       $(this).toggleClass('show-rt');
    });

    // Your code here...
})();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址