lit.link最小フォントサイズ変更

lit.linkの文字ちっさ問題対策

// ==UserScript==
// @name         lit.link最小フォントサイズ変更
// @namespace    http://tampermonkey.net/
// @version      1.0
// @license      MIT
// @description  lit.linkの文字ちっさ問題対策
// @author       makichama / makipom
// @match        http*://lit.link/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    const minFontSize = 12; // こちらの値を調整して、一番見えやすいようにしてください

    document.querySelectorAll('*').forEach(function(element) {
        element.style.fontSize = minFontSize + 'px';
    });
      Array.prototype.forEach.call(document.getElementsByTagName("*"), function(e){e.style.fontFamily ="メイリオ"}); // カッコの中のフォントを好きなフォントファミリーの名前に変えてください。デフォルトは皆が大好きな古き良きメイリオです
})();