גודל בינוני בכתיבת הודעה ב-Gmail
-
@ua אם אתה רוצה יש לי פתרון פשוט, ע"י תוסף להוספת CSS/ תוסף להוספת JS .
קוד בשביל תוסף להוספת JS:// ==UserScript== // @name גודל גופן בינוני // @namespace http://tampermonkey.net/ // @version 0.1 // @description מחליף את גודל גופן ברירת מחדל בג'מייל מקטן לבינוני // @author WWW // @match https://mail.google.com/mail/u/0/ // @grant none // ==/UserScript== (function() { 'use strict'; addStyle('.gmail_default { font-size: medium }'); function addStyle(css) { const style = document.getElementById("GM_addStyleBy8626") || (function() { const style = document.createElement('style'); style.type = 'text/css'; style.id = "GM_addStyleBy8626"; document.head.appendChild(style); return style; })(); const sheet = style.sheet; sheet.insertRule(css, (sheet.rules || sheet.cssRules || []).length); } })();
זה יעבוד כשברירת מחדל בהגדות ג'מייל יהיה גודל רגיל.
זה לא פוגע בהגדרה ידנית של טקסט מסוים בגודל אחר, גם רגיל.