Answers:
您可以将自定义CSS规则添加到chrome/userContent.css
Firefox配置文件文件夹中的文件。
例:
/* 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; }
}
@-moz-document regex(".*\.(jpg|png|gif|bmp)$")
。我曾经用来使Firefox的图像查看器放大而不会模糊像素(img{image-rendering: -moz-crisp-edges;image-rendering: pixelated;}
)。