Não sei se entendi a pergunta.
Se você pretende alterar a fonte de cada site (para substituir a fonte escolhida), use GreaseMonkey para aplicar um estilo personalizado ... Isso naturalmente tem o potencial de processar páginas incorretamente ...
body, td, input, textarea, select, a, h, span, div {
font-size: 8pt !important;
font-family: Tahoma !important;
}
Também sugere que você poderia tentar substituir SOMENTE Arial com Tahoma
// ==UserScript==
// @name Comic Sans to Segoe font
// @namespace for bb
// @include *
// ==/UserScript==
var elementList = document.getElementsByTagName('*');
for (var i = elementList.length - 1; i >= 0; i--) {
var elementItem = elementList[i];
var style = getComputedStyle(elementItem, '');
elementItem.style.fontFamily = style.fontFamily.replace(/Comic Sans MS/i, 'segoe');
}
Se você quer dizer a fonte usada pelo FireFox, então:
Changing Font
To change the font:
Click the menu button New Fx Menu and choose Options
Select the Content panel.
Under Fonts & Colors, use the drop-down menus to select the font and font size of your choice.
font.png
Click OK to close the Options window
Custom Fonts
Some websites have custom fonts, to disable them:
Click the menu button New Fx Menu and choose Options
Select the Content panel.
Under Fonts & Colors, click the Advanced... button.
advance.png
In the window that opens uncheck the box next to Allow pages to choose their own fonts, instead of my selections above.
custom_font.png
Click OK to close the Fonts window.
Click OK to close the Options window
Fonte