Increase HN Font Size

A user script to increase Hacker News's font size

Bu betiği kurabilmeniz için Tampermonkey, Greasemonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

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

Bu betiği kurabilmeniz için Tampermonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

Bu betiği kurabilmeniz için Tampermonkey ya da Userscripts gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

Bu betiği indirebilmeniz için ayrıca Tampermonkey gibi bir eklenti kurmanız gerekmektedir.

Bu komut dosyasını yüklemek için bir kullanıcı komut dosyası yöneticisi uzantısı yüklemeniz gerekecek.

(Zaten bir kullanıcı komut dosyası yöneticim var, kurmama izin verin!)

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.

(Zateb bir user-style yöneticim var, yükleyeyim!)

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