如果您在文本区域添加更多字体,Google Fonts 中文本区域的字体大小会发生变化。我讨厌它。可以让它保持原有大小、默认大小或您选择的大小吗?谷歌翻译
这是为了启用即时翻译。
答案1
像这样?
// ==UserScript==
// @name fontsize
// @namespace SuperdoggyScripts
// @include https://translate.google.com/*
// @version 1
// @grant none
// ==/UserScript==
document.getElementById('source').style.setProperty('font-size', '24px', 'important');
document.getElementById('result_box').style.setProperty('font-size', '24px', 'important');
安装一个脚本管理器(如 Greasemonkey)并将其添加为用户脚本。
您也可以使用样式管理器(例如 Stylish)来执行此操作。