GMail Intensifies - google.com

Larger font sizes for GMail

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το Tampermonkey, το Greasemonkey ή το Violentmonkey για να εγκαταστήσετε αυτόν τον κώδικα.

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

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το Tampermonkey ή το Violentmonkey για να εγκαταστήσετε αυτόν τον κώδικα.

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το Tampermonkey ή το Userscripts για να εγκαταστήσετε αυτόν τον κώδικα.

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

Θα χρειαστεί να εγκαταστήσετε μια επέκταση διαχείρισης κώδικα χρήστη για να εγκαταστήσετε αυτόν τον κώδικα.

(Έχω ήδη έναν διαχειριστή κώδικα χρήστη, επιτρέψτε μου να τον εγκαταστήσω!)

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.

(Έχω ήδη έναν διαχειριστή στυλ χρήστη, επιτρέψτε μου να τον εγκαταστήσω!)

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