I want to run a Greasemonkey script on Firefox network error pages, such as (but not limited to) this one:

Can I do this with chrome:// URLs? If so, what are they? If not, is there another way?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Well, I was almost on the right track. Two things:
about:neterror, notchrome://. If you try to accessww.example.com(missing a w) then you will be redirected toabout:neterror?e=dnsNotFound&u=http%3A//ww.example.com/&c=UTF-8&d=Firefox%20can%27t%20find%20the%20server%20at%20ww.example.com// @include about:neterror*.But since we know the URL format, we can
and check:
Thanks for the hints, Brock.