搜索 | 用户支持

防范以用户支持为名的诈骗。我们绝对不会要求您拨打电话或发送短信,及提供任何个人信息。请使用“举报滥用”选项报告涉及违规的行为。

Learn More

Change URL text color in Private Browsing - Firefox 4

  • 5 个回答
  • 7 人有此问题
  • 24 次查看
  • 最后回复者为 cor-el

more options

In Firefox 3.6.x, I was able to change the text color to red in the URL bar when in private browsing mode by adding the following in the chrome folder, overly.css file for an extension:

[browsingmode=private] #urlbar { background: #000  !important; color: #F00 !important; }

That code no longer works for the same extension in Firefox 4.

Any suggestions as to how to change Firefox 4 URL text color to red when in private browsing mode?

In Firefox 3.6.x, I was able to change the text color to red in the URL bar when in private browsing mode by adding the following in the chrome folder, overly.css file for an extension: [browsingmode=private] #urlbar { background: #000 !important; color: #F00 !important; } That code no longer works for the same extension in Firefox 4. Any suggestions as to how to change Firefox 4 URL text color to red when in private browsing mode?

被采纳的解决方案

Try these instead:

[privatebrowsingmode="temporary"]
[privatebrowsingmode="permanent"]

[privatebrowsingmode="permanent"] #urlbar { background: #000  !important; color: #F00 !important; }
定位到答案原位置 👍 1

所有回复 (5)

more options

选择的解决方案

Try these instead:

[privatebrowsingmode="temporary"]
[privatebrowsingmode="permanent"]

[privatebrowsingmode="permanent"] #urlbar { background: #000  !important; color: #F00 !important; }

由cor-el于修改

more options

Got it! Thanks

I used light yellow background with red text:

[privatebrowsingmode="temporary"] #urlbar { background: #FFFFCC  !important; color: #F00 !important; }

Is there a reference for the Firefox 4 "css descriptors" changes, for example:

[browsingmode=private] is now

  • [privatebrowsingmode="temporary"] or
  • [privatebrowsingmode="permanent"]

with some explanations?

由SafeBrowser于修改

more options
more options

Thanks for the help. You always have the answer.

more options

You're welcome