Greasy Fork is available in English.

Increase Font Size

Increases the Font Size on all elements on the page.

Εγκατάσταση αυτού του κώδικαΒοήθεια
Κώδικας προτεινόμενος από τον δημιιουργό

Μπορεί, επίσης, να σας αρέσει ο κώδικας Youtube - Subtitle.

Εγκατάσταση αυτού του κώδικα
// ==UserScript==
// @name         Increase Font Size
// @namespace    https://greasyfork.org/en/users/670188-hacker09?sort=daily_installs
// @version      3
// @description  Increases the Font Size on all elements on the page.
// @author       hacker09
// @match        https://*/*
// @exclude      https://www.youtube.com/embed/*
// @exclude      https://temu.com/*
// @icon         https://i.imgur.com/2XQm3qI.png
// @run-at       document-end
// @grant        none
// ==/UserScript==

(function() {
  'use strict';
  [...document.getElementsByTagName("*")].forEach(function(el) { el.style.fontSize = "25px"; }); //Increase the font size
})();