Firefox 扩展:将项目添加到工具菜单

发布于 2024-10-19 22:39:25 字数 300 浏览 4 评论 0原文

我希望我的扩展作为 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

终难愈 2024-10-26 22:39:25

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

素罗衫 2024-10-26 22:39:25

以下非常简单的扩展将一个菜单项添加到 View 弹出窗口中。

我的清单:

content menutest    chrome/content/
overlay chrome://browser/content/browser.xul chrome://menutest/content/menutest.xul

我的 XUL 文件:

<?xml version="1.0"?>
<overlay id="menutest" 
         xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
    <menupopup id="menu_viewPopup">
       <menuitem id="bs-hello" label="My View Item"
              oncommand="alert('test');"/>
    </menupopup>
</overlay>

The following very simple extension adds a menu item to the View popup.

My manifest:

content menutest    chrome/content/
overlay chrome://browser/content/browser.xul chrome://menutest/content/menutest.xul

My XUL file:

<?xml version="1.0"?>
<overlay id="menutest" 
         xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
    <menupopup id="menu_viewPopup">
       <menuitem id="bs-hello" label="My View Item"
              oncommand="alert('test');"/>
    </menupopup>
</overlay>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文