Path: blob/main/files/en-us/mozilla/add-ons/webextensions/api/menus/onclicked/index.md
6581 views
------{{AddonSidebar()}}
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.
Syntax
Events have three functions:
addListener(callback): Adds a listener to this event.
removeListener(listener): Stop listening to this event. The
listenerargument is the listener to remove.
hasListener(listener): Check whether
listeneris registered for this event. Returnstrueif it is listening,falseotherwise.
addListener syntax
Parameters
callback: Function that will be called when this event occurs. The function will be passed the following arguments:
info: {{WebExtAPIRef('menus.OnClickData')}}. Information about the item clicked and the context where the click happened.
tab: {{WebExtAPIRef('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.
Browser compatibility
{{Compat}}
Examples
This example listens for clicks on a menu item, then log the item's ID and the tab ID:
{{WebExtExamples}}
Note: This API is based on Chromium's
chrome.contextMenusAPI. This documentation is derived fromcontext_menus.jsonin the Chromium code.