Increase Font Size

Increases the Font Size on all elements on the page.

目前为 2023-12-05 提交的版本。查看 最新版本

// ==UserScript==
// @name         Increase Font Size
// @namespace    https://gf.qytechs.cn/en/users/670188-hacker09?sort=daily_installs
// @version      1
// @description  Increases the Font Size on all elements on the page.
// @author       hacker09
// @match        https://*/*
// @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
})();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址