![[weekend meme] You literally had one job.](https://preview.redd.it/lae6dj0mn2bh1.png?auto=webp&s=a829393a0e22d4d42f4a26ae07f170bd68f506d4)
▲ 1.4k r/LearnJapanese
[weekend meme] You literally had one job.
Do Japanese people also suffer from the IME defaulting to English input?
Edit: I have found this(first answer) gem while googling for a solution.
u/tonkachi_ — 4 days ago
![[weekend meme] You literally had one job.](https://preview.redd.it/lae6dj0mn2bh1.png?auto=webp&s=a829393a0e22d4d42f4a26ae07f170bd68f506d4)
Do Japanese people also suffer from the IME defaulting to English input?
Edit: I have found this(first answer) gem while googling for a solution.
In short, use stylus extension to apply custom style sheets. (Some browsers support "custom user stylesheets" out of the box.)
In the extension, create a new style, paste this CSS and apply it to all websites.
ruby rt {
opacity: 0 !important;
transition: opacity ease 0.3s !important;
}
ruby:hover rt{
opacity: 1 !important;
}
And you get this
https://i.redd.it/m4dv6yhtw6yg1.gif
I don't know much about Web Dev but this should work for most websites as they use <ruby> and <rt> tags to show the furigana. The CSS style should also work for Anki and Yomitan.
Just a convenient way I have come across to glance at the furigana.
I hope it helps somebody.