Increase HN Font Size

A user script to increase Hacker News's font size

คุณจะต้องติดตั้งส่วนขยาย เช่น Tampermonkey, Greasemonkey หรือ Violentmonkey เพื่อติดตั้งสคริปต์นี้

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

คุณจะต้องติดตั้งส่วนขยาย เช่น Tampermonkey หรือ Violentmonkey เพื่อติดตั้งสคริปต์นี้

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

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

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

// ==UserScript==
// @name         Increase HN Font Size
// @namespace    https://greasyfork.org/zh-TW/users/79288
// @version      1.1
// @description  A user script to increase Hacker News's font size
// @author       jlhg
// @match        https://news.ycombinator.com/*
// @grant        none
// ==/UserScript==

(function() {
  'use strict';
  let titles = document.getElementsByClassName('title');
  [].forEach.call(titles, function(e) {
      e.style.fontSize = '16px';
  });

  let comments = document.getElementsByClassName('comment');
  [].forEach.call(comments, function(e) {
      e.style.fontSize = '14px';
      e.style.lineHeight = '1.5';
  });

  let comheads = document.getElementsByClassName('comhead');
  [].forEach.call(comheads, function(e) {
      e.style.fontSize = '14px';
      e.style.lineHeight = '1.5';
  });

  let subtexts = document.getElementsByClassName('subtext');
  [].forEach.call(subtexts, function(e) {
      e.style.fontSize = '14px';
      e.style.lineHeight = '1.5';
  });
})();