Font Substitute: Hiragino Sans GB

Substitute fonts with Hiragino Sans GB W3.

当前为 2023-07-25 提交的版本,查看 最新版本

// ==UserScript==
// @name                 Font Substitute: Hiragino Sans GB
// @version              1.0
// @author               softforum
// @description          Substitute fonts with Hiragino Sans GB W3.
// @license MIT
// @match                *://*/*
// @run-at               document-start
// @grant                GM_addStyle
// @namespace https://greasyfork.org/users/1106490
// ==/UserScript==

GM_addStyle(`
@font-face {
    font-family: "SimSun";
    src: local("Hiragino Sans GB W3");
}

@font-face {
    font-family: "宋体";
    src: local("Hiragino Sans GB W3");
}

@font-face {
    font-family: "Microsoft Yahei";
    src: local("Hiragino Sans GB W3");
}

@font-face {
    font-family: "Microsoft Yahei UI";
    src: local("Hiragino Sans GB W3");
}

@font-face {
    font-family: "微软雅黑";
    src: local("Hiragino Sans GB W3");
}

@font-face {
    font-family: "custom-ht";
    src: local("Hiragino Sans GB W3");
}

@font-face {
    font-family: "Roboto";
    src: local("Hiragino Sans GB W3");
    unicode-range: U+4E00-9FFF;
}

@font-face {
    font-family: "Segoe UI";
    src: local("Hiragino Sans GB W3");
    unicode-range: U+4E00-9FFF;
}

@font-face {
    font-family: "Segoe UI";
    src: local("Segoe UI");
    unicode-range: U+0-4DFF;
}

@font-face {
    font-family: "Segoe UI";
    src: local("Segoe UI");
    unicode-range: U+A000-10FFFF;
}

@font-face {
    font-family: "Arial";
    src: local("Hiragino Sans GB W3");
    unicode-range: U+4E00-9FFF;
}

@font-face {
    font-family: "Arial";
    src: local("Arial");
    unicode-range: U+0-4DFF;
}

@font-face {
    font-family: "Arial";
    src: local("Arial");
    unicode-range: U+A000-10FFFF;
}

@font-face {
    font-family: "Times New Roman";
    src: local("Hiragino Sans GB W3");
    unicode-range: U+4E00-9FFF;
}

@font-face {
    font-family: "Times New Roman";
    src: local("Times New Roman");
    unicode-range: U+0-4DFF;
}

@font-face {
    font-family: "Times New Roman";
    src: local("Times New Roman");
    unicode-range: U+A000-10FFFF;
}
`);