GMail Intensifies - google.com

Larger font sizes for GMail

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.

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

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        GMail Intensifies - google.com
// @namespace   meyerk.com
// @match       https://mail.google.com/mail/u/0/
// @grant       none
// @version     1.0
// @author      MeyerK
// @description Larger font sizes for GMail
// ==/UserScript==

class GMailI
{  
  patch(ev)
  {
    var elems = null;
    
    // index
    elems = document.querySelectorAll('div.yW');
    this.setSize(elems, 'large');

    elems = document.querySelectorAll('div.xS');
    this.setSize(elems, 'large');
    
    // overview mail thread items
    elems = document.querySelectorAll('div.a3s.aXjCH');
    this.setSize(elems, 'larger');

    // expanded overview mail thred items
    elems = document.querySelectorAll('div.iA.g6');
    this.setSize(elems, 'larger');
    
    // compose areas
    elems = document.querySelector('div.Am.Al.editable.LW-avf.tS-tW[aria-label="Inhalt der Nachricht"]');      
    this.setSize(elems, 'larger');
  }
  
  setSize(nodes, newFontSize)
  {
    if (NodeList.prototype.isPrototypeOf(nodes))
    {
      if (nodes.length > 0)
      {
        for (var i=0; i<nodes.length; i++)
        {
          if (nodes[i].style.fontSize != newFontSize)
          {
            nodes[i].style.fontSize = newFontSize;    
          }
        }
      } 
    }
    else
    {
      if (
          (nodes != null) &&
          (nodes.style.fontSize != newFontSize)
         )
      { 
        nodes.style.fontSize = newFontSize;
      }      
    }
  }
};

var gi = new GMailI();
document.querySelector('body').addEventListener('DOMSubtreeModified', gi.patch.bind(gi));