Fired when a menu item is clicked.
For compatibility with other browsers, Firefox makes this event available via the contextMenus namespace as well as the menus namespace.
Fired when a menu item is clicked.
For compatibility with other browsers, Firefox makes this event available via the contextMenus namespace as well as the menus namespace.
browser.menus.onClicked.addListener(listener)
browser.menus.onClicked.removeListener(listener)
browser.menus.onClicked.hasListener(listener)
    Events have three functions:
addListener(callback)
     Adds a listener to this event.
removeListener(listener)
     Stop listening to this event. The listener argument is the listener to remove.
hasListener(listener)
     Check whether listener is registered for this event. Returns true if it is listening, false otherwise.
callback
     Function that will be called when this event occurs. The function will be passed the following arguments:
info
       menus.OnClickData. Information about the item clicked and the context where the click happened.
tab
       tabs.Tab. The details of the tab where the click took place. If the click did not take place in or on a tab, this parameter will be missing.
| Desktop | Mobile | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Chrome | Edge | Firefox | Internet Explorer | Opera | Safari | WebView Android | Chrome Android | Firefox for Android | Opera Android | Safari on IOS | Samsung Internet | |
onClicked | 
       Yes | Yes | 5548 | ? | Yes | 14 | ? | ? | No | ? | No | ? | 
This example listens for clicks on a menu item, then log the item's ID and the tab ID:
browser.menus.create({
  id: "click-me",
  title: "Click me!",
  contexts: ["all"],
});
browser.menus.onClicked.addListener((info, tab) => {
  console.log(`Item ${info.menuItemId} clicked in tab ${tab.id}`);
});
    Note: This API is based on Chromium's chrome.contextMenus API. This documentation is derived from context_menus.json in the Chromium code.
© 2005–2023 MDN contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
 https://developer.mozilla.org/en-US/docs/Mozilla/Add-ons/WebExtensions/API/menus/onClicked