Waze Forum Post Enlarger

Enlarge fonts for legibility

安装此脚本
作者推荐脚本

您可能也喜欢WME Fix UI

安装此脚本
// ==UserScript==
// @name          Waze Forum Post Enlarger
// @namespace     https://gf.qytechs.cn/en/users/46070
// @version       0.1
// @description   Enlarge fonts for legibility
// @author        Iain House
// @match         https://www.waze.com/forum/*
// @grant         none
// @supportURL    https://www.waze.com/forum/viewtopic.php?f=819&t=279545
// ==/UserScript==

(function() {
    'use strict';
    var head, style;
    head = document.getElementsByTagName('head')[0];
    style = document.createElement('style');
    style.type = 'text/css';
    style.innerHTML = '.content {font-size:15px !important;}';
    style.id = "IainHack";
    head.appendChild(style);
})();

QingJ © 2025

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