Use Red Hat Text

Loads font "Red Hat Text" that many pages ask for but are missing.

このスクリプトの質問や評価の投稿はこちら通報はこちらへお寄せください
// ==UserScript==
// @name         Use Red Hat Text
// @namespace    https://github.com/nate-kean/
// @version      20251015
// @description  Loads font "Red Hat Text" that many pages ask for but are missing.
// @author       Nate Kean
// @match        https://jamesriver.fellowshiponego.com/*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=fellowshiponego.com
// @grant        none
// @license      MIT
// ==/UserScript==

(function() {
    document.head.insertAdjacentHTML("beforeend", `
        <link href="https://fonts.googleapis.com/css?family=Red+Hat+Text:400,600,700" rel="stylesheet">
    `);
})();