搜索 | 用户支持

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

详细了解

Is it possible to remove back and reload button in browser without using javascript. And also does firefox support Qt Objects.

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

more options

I want to remove the back and reload button from firefox browser completely, I dont want to do it using javascript. Does firefox SDK can help to build a browser, removing the back and reload button? Does firefox support QT object interactions?

I want to remove the back and reload button from firefox browser completely, I dont want to do it using javascript. Does firefox SDK can help to build a browser, removing the back and reload button? Does firefox support QT object interactions?

所有回复 (2)

more options

This add-on can help you,

Many of us are using; Classic Theme Restorer (Customize Australis) {web link} Restore squared tabs, appmenu, add-ons bar, small button view and more on Australis UI (Windows/MacOSX/Linux + Fx 29+).

This will restore many of the things the last upgrades took away.

http://forums.mozillazine.org/viewtopic.php?f=48&t=2827985 Classic Theme Restorer - Discussion Thread (v2)

edit: removed email address from public as it is posted on a.m.o page - Classic Theme Restorer - Support E-mail

由James于修改

more options

You can remove items in the user interface via CSS code in the userChrome.css file.

Note that the Reload button behaves as three different buttons as it shows like a combined Stop/Reload/Go button.

  • Stop button: while the page is loading
  • Reload button: when the page has finished loading
  • Go button: when you modify the location/address bar content

Do you want yo hide all three states?

Do you want to remove both the back and forward buttons?

Hiding the Back and Forward button doesn't work well for me because the urlbar get get a border at the left end. Add code to the userChrome.css file below the default @namespace line.


@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /* only needed once */

#back-button, #forward-button {display:none!important;}

The customization files userChrome.css (user interface) and userContent.css (websites) are located in the chrome folder in the Firefox profile folder.

You can use the DOM Inspector to check what rules are applied to an element.