UtaTen Font Source Serif

Change UtaTen Font to Source Han Serif JP.

// ==UserScript==
// @name         UtaTen Font Source Serif
// @namespace    https://greasyfork.org/en/scripts/453529/
// @version      0.1
// @description  Change UtaTen Font to Source Han Serif JP.
// @author       yaozeye
// @match        *://utaten.com/*
// @icon         https://icons.duckduckgo.com/ip2/utaten.com.ico
// @grant        none
// @license MIT
// ==/UserScript==

(function() {
    'use strict';
    document.body.style.fontFamily="Source Han Serif JP, Source Serif Pro, serif, Source Hans Sans JP, Source Sans Pro, sans-serif";
})();