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...
})();