Increase Font Size

Increases the Font Size on all elements on the page.

安装此脚本?
作者推荐脚本

你可能也喜欢 Youtube - Subtitle

安装此脚本
  1. // ==UserScript==
  2. // @name Increase Font Size
  3. // @namespace https://greasyfork.org/en/users/670188-hacker09?sort=daily_installs
  4. // @version 3
  5. // @description Increases the Font Size on all elements on the page.
  6. // @author hacker09
  7. // @match https://*/*
  8. // @exclude https://www.youtube.com/embed/*
  9. // @exclude https://temu.com/*
  10. // @icon https://i.imgur.com/2XQm3qI.png
  11. // @run-at document-end
  12. // @grant none
  13. // ==/UserScript==
  14.  
  15. (function() {
  16. 'use strict';
  17. [...document.getElementsByTagName("*")].forEach(function(el) { el.style.fontSize = "25px"; }); //Increase the font size
  18. })();