GMail Intensifies - google.com

Larger font sizes for GMail

K instalaci tototo skriptu si budete muset nainstalovat rozšíření jako Tampermonkey, Greasemonkey nebo Violentmonkey.

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

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Violentmonkey.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Userscripts.

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

K instalaci tohoto skriptu si budete muset nainstalovat manažer uživatelských skriptů.

(Už mám manažer uživatelských skriptů, nechte mě ho nainstalovat!)

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.

(Už mám manažer uživatelských stylů, nechte mě ho nainstalovat!)

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