Firefox 网络错误页面上的 Greasemonkey 脚本
我想在 Firefox 网络错误页面上运行 Greasemonkey 脚本,例如(但不限于)这个:
我可以使用 chrome://
网址执行此操作吗?如果有,它们是什么?如果没有,还有其他办法吗?
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?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
好吧,我几乎走上了正轨。有两件事:
about:neterror
开头,而不是chrome://
。如果您尝试访问ww.example.com
(缺少 aw),那么您将被重定向到about: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*
。但由于我们知道 URL 格式,因此我们可以
检查:
谢谢您的提示,Brock。
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.