搜索 | 用户支持

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

详细了解

How to detect the presence of menubar from the Firefox extension ?

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

more options

Hi, I have created a firefox extension, that need to detect the presence/absence of the menubar in the browser window. How do i query this from my Extension's javascript ?

Kindly help me in doing so


Thanking you

Raveendra

Hi, I have created a firefox extension, that need to detect the presence/absence of the menubar in the browser window. How do i query this from my Extension's javascript ? Kindly help me in doing so Thanking you Raveendra

由Raveendra_Pai于修改

被采纳的解决方案

Thanks a lot.. ! This solved my problem.. it works :)

定位到答案原位置 👍 0

所有回复 (2)

more options

You can check the height of the menu bar.

You can use code like this as a start:

const {classes:Cc,interfaces:Ci} = Components;
var wm = Cc["@mozilla.org/appshell/window-mediator;1"].getService(Ci.nsIWindowMediator);
var wd = wm.getMostRecentWindow("navigator:browser").document;
var mb = wd.getElementById('toolbar-menubar');

alert(wd.defaultView.getComputedStyle(mb,"").getPropertyValue('height'));

A good place to ask advice is at the MozillaZine Extension Development forum

The helpers at that forum are more knowledgeable about web development issues.
You need to register at the MozillaZine forum site in order to post at that forum.

more options

选择的解决方案

Thanks a lot.. ! This solved my problem.. it works :)