Exhentai Resource Han Rounded

更换资源圆体字体Ex

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 Tampermonkey,才能安裝此腳本

您需要先安裝使用者腳本管理器擴充功能後才能安裝該腳本。

(我已經安裝了使用者腳本管理器,讓我安裝!)

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

(我已經安裝了使用者樣式管理器,讓我安裝!)

// ==UserScript==
// @name         Exhentai Resource Han Rounded
// @author       100497
// @match        *://*.exhentai.org/*
// @match        *://*.hath.network/*
// @grant        none
// @namespace    Exhentai Resource Han Rounded
// @version      2024.08.14
// @description   更换资源圆体字体Ex
// @license MIT
// @icon        https://cdn-icons-png.flaticon.com/128/2584/2584606.png
// ==/UserScript==

(function() {
    const style = document.createElement('style');
    style.textContent = `
        /*字体名称*/
        * {
            font-family: "Resource Han Rounded CN" !important;
        }

        /*字体大小*/
        * {
            font-size: 16px !important;
        }

        /*字体颜色*/
        /*
        * {
            color: #000000 !important;
        }
        */

        /*字体加粗*/
        /*
        * {
            font-weight: bold !important;
        }
        */

        /*字体粗细(整百数字)*/
        * {
            font-weight: 600 !important;
        }
    `;
    document.head.append(style);
})();