Google Font Size Reversion

Get back the former font size in google search

이 스크립트를 설치하려면 Tampermonkey, Greasemonkey 또는 Violentmonkey와 같은 확장 프로그램이 필요합니다.

You will need to install an extension such as Tampermonkey to install this script.

이 스크립트를 설치하려면 Tampermonkey 또는 Violentmonkey와 같은 확장 프로그램이 필요합니다.

이 스크립트를 설치하려면 Tampermonkey 또는 Userscripts와 같은 확장 프로그램이 필요합니다.

이 스크립트를 설치하려면 Tampermonkey와 같은 확장 프로그램이 필요합니다.

이 스크립트를 설치하려면 유저 스크립트 관리자 확장 프로그램이 필요합니다.

(이미 유저 스크립트 관리자가 설치되어 있습니다. 설치를 진행합니다!)

이 스타일을 설치하려면 Stylus와 같은 확장 프로그램이 필요합니다.

이 스타일을 설치하려면 Stylus와 같은 확장 프로그램이 필요합니다.

이 스타일을 설치하려면 Stylus와 같은 확장 프로그램이 필요합니다.

이 스타일을 설치하려면 유저 스타일 관리자 확장 프로그램이 필요합니다.

이 스타일을 설치하려면 유저 스타일 관리자 확장 프로그램이 필요합니다.

이 스타일을 설치하려면 유저 스타일 관리자 확장 프로그램이 필요합니다.

(이미 유저 스타일 관리자가 설치되어 있습니다. 설치를 진행합니다!)

// ==UserScript==
// @name         Google Font Size Reversion
// @namespace    https://greasyfork.org/users/163468
// @version      0.0.2
// @description  Get back the former font size in google search
// @author       winderica
// @include      http://www.google.*/search*
// @include      https://www.google.*/search*
// @grant        none
// ==/UserScript==
(() => {
    'use strict';
    const css = `
        .f, .f a:link, .m, .osl a, .st, .r, .rc .s, .P1usbc, .TbwUpd, .knowledge-panel.kp-blk .mod, .c14z5c .mod, .cbphWd {
            line-height: 1.54;
        }
        .g, body, html, input, .std, h1 {
            font-size: small;
        }
        #res h3, #extrares h3, .e2BEnf, .garHBe {
            font-size: 18px;
            line-height: 1.33;
        }
        .g {
            margin-bottom: 26px;
        }
        .iUh30 {
            font-size: 14px;
            line-height: 1.43;
        }
        .r a.fl {
            font-size: 14px;
        }
        .dPAwzb, .dPAwzb a {
            line-height: 1.33;
        }
        .TbwUpd a.fl {
            font-size: 14px;
        }
        .Uekwlc {
            font-size: 13px;
        }
        .LC20lb {
            line-height: 1.33;
        }
        .TbwUpd {
            padding-bottom: 1px;
        }
        .JolIg {
            font-size: 18px;
            line-height: 1.33;
        }
        .kcHZBe {
            line-height: 1.375;
        }
        .gv607c:link, .gv607c:visited {
            line-height: 1.43;
        }
        .fm06If .NA6bn, .HSryR .NA6bn, .c2xzTb .ILfuVd.duSGDe, .c2xzTb .NA6bn.c3biWd {
            font-size: 13px;
            line-height: 1.54;
        }
        .LjTgvd .rjOVwe.ILfuVd {
            font-size: 13px;
        }
    `;
    const style = document.createElement('style');
    style.appendChild(document.createTextNode(css));
    document.body.appendChild(style);
})();