Increase HN Font Size

A user script to increase Hacker News's font size

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

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

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

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.

ستحتاج إلى تثبيت إضافة مثل Stylus لتثبيت هذا النمط.

ستحتاج إلى تثبيت إضافة لإدارة أنماط المستخدم لتتمكن من تثبيت هذا النمط.

ستحتاج إلى تثبيت إضافة لإدارة أنماط المستخدم لتثبيت هذا النمط.

ستحتاج إلى تثبيت إضافة لإدارة أنماط المستخدم لتثبيت هذا النمط.

(لدي بالفعل مثبت أنماط للمستخدم، دعني أقم بتثبيته!)

// ==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';
  });
})();