如何使用Firefox将CSS永久添加到某些页面?


10

如何使用Firefox将CSS永久添加到某些页面?

说,我想更改我经常使用Firefox的页面的字体或背景。

怎么做?

Answers:



8

有一个很棒的扩展,名为Fashion,可以完全满足您的需求。它允许您将自定义CSS添加到您访问的页面。


5

您可以将自定义CSS规则添加到chrome/userContent.cssFirefox配置文件文件夹中的文件。

例:

/* For any page */
body { margin: 10px; border: 1px solid red !important; }

/* Or only for google.com */
@-moz-document domain(google.com) {
    body { margin: 10px; border: 1px solid red !important; }
}

3
每次更改都需要重新启动Firefox。另外,您还可以使用正则表达式来匹配URL,例如:@-moz-document regex(".*\.(jpg|png|gif|bmp)$")。我曾经用来使Firefox的图像查看器放大而不会模糊像素(img{image-rendering: -moz-crisp-edges;image-rendering: pixelated;})。
Yeti

我现在在2019年进行了此操作,当您不想查找和安装扩展程序时仍然可以使用。
Rennex
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.