// ==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 // @downloadURL https://update.greasyfork.icu/scripts/453529/UtaTen%20Font%20Source%20Serif.user.js // @updateURL https://update.greasyfork.icu/scripts/453529/UtaTen%20Font%20Source%20Serif.meta.js // ==/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"; })();