Firefox 扩展:将项目添加到工具菜单
我希望我的扩展作为 ff 菜单项“查看”下的菜单条目。我不知道如何称呼它。这将是“工具”的代码:
<menupopup id="menu_ToolsPopup">
<menuitem id="bs-hello" label="&bs.label;"
oncommand="bs.onMenuItemCommand(event);"/>
</menupopup>
我需要更改的是menupopup的id,但我不知道“View”的id。有人可以帮我吗?
I want my extension as menu entry under the ff menu item "View". I cannot figure out how to call it. This would be the code for "Tools":
<menupopup id="menu_ToolsPopup">
<menuitem id="bs-hello" label="&bs.label;"
oncommand="bs.onMenuItemCommand(event);"/>
</menupopup>
All I have to change is the id of menupopup but I don't know the id of "View". Anyone can help me out?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
Firefox 定义了各种用于覆盖的 id。查看菜单的 ID 是 menu_viewPopup。请注意非大写“v”。
有关其他叠加点,请参阅https://developer.mozilla.org/en/FirefoxOverlayPoints/Menus
Firefox defines various ids for overlaying. The id for the View menu is menu_viewPopup. Please note the non-capital 'v'.
For other overlay points see https://developer.mozilla.org/en/FirefoxOverlayPoints/Menus
以下非常简单的扩展将一个菜单项添加到
View
弹出窗口中。我的清单:
我的 XUL 文件:
The following very simple extension adds a menu item to the
View
popup.My manifest:
My XUL file: