Cukup buat/edit ~/.mozilla/firefox/YOUR-PROFILE/chrome/userContent.css
jadi itu termasuk:
input, textarea {
color:#000 !important;
}
secara pribadi saya juga ingin memastikan bahwa latar belakangnya putih, dan membuat teks menjadi abu-abu tua agar lebih lembut, jadi saya menyetel milik saya ke:
input, textarea {
color:#555 !important;
background-color:#fff !important;
}
Catatan:Anda harus keluar dan memulai ulang Firefox sebelum perubahan muncul.
Salah satu alternatifnya adalah dengan menggunakan skrip Greasemonkey:
// ==UserScript==
// @name Style Corrector
// @author Nufros (loosely based on Color Corrector by Erik Nomitch)
// @description Style Corrector (by Nufros) allow you to edit colors, (...)
// @namespace userscripts.org/scripts/show/36850
// @include *
// @exclude http://*.deviantart.com/*
// @exclude http://*.myspace.tld/*
// @exclude http://*.youtube.tld/*
// ==/UserScript==
// Visit the script's page for the full script
GM_addStyle("input { color: #bfbfbf; background-color: #222222 !important; }");
GM_addStyle("textarea { color:#bfbfbf; background-color: #222222 !important;}");
du -h dengan lebih banyak tempat desimal
Jika saya mengetahui nomor PID suatu proses, bagaimana cara mendapatkan namanya?