Greasy Fork is available in English.

Read the Kanji - Hide English translation until mouseover

Hides English translation until you put your mouse over it.

От 26.02.2020. Виж последната версия.

  1. /* ==UserStyle==
  2. @name Read the Kanji - Hide English translation until mouseover
  3. @description Hides English translation until you put your mouse over it.
  4. @version 1.0
  5. @namespace https://greasyfork.org/users/3759
  6. ==/UserStyle== */
  7.  
  8. @-moz-document url-prefix("https://www.readthekanji.com/") {
  9.  
  10. p#en {
  11. background-color:#fff !important;
  12. color:#fff !important;
  13. border:1px dotted #000 !important;
  14. margin:5px !important;
  15. padding:5px !important;
  16. }
  17.  
  18. p#en:hover {
  19. color:#555 !important;
  20. }
  21. }