जवाबों:
आप chrome/userContent.css
अपने फ़ायरफ़ॉक्स प्रोफ़ाइल फ़ोल्डर में एक फ़ाइल में कस्टम सीएसएस नियम जोड़ सकते हैं ।
उदाहरण:
/* 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)$")
:। जो मैंने फ़ायरफ़ॉक्स ज़ूम की छवि को बिना धुंधला पिक्सेल ( img{image-rendering: -moz-crisp-edges;image-rendering: pixelated;}
) में ज़ूम करने के लिए उपयोग किया था ।