The `context-menu` module lets you add items to Firefox's page context menu. Introduction ------------ The `context-menu` API provides a simple, declarative way to add items to the page's context menu. You can add items that perform an action when clicked, submenus, and menu separators. Instead of manually adding items when particular contexts occur and then removing them when those contexts go away, you *bind* items to contexts, and the adding and removing is automatically handled for you. Items are bound to contexts in much the same way that event listeners are bound to events. When the user invokes the context menu, all of the items bound to the current context are automatically added to the menu. If no items are bound, none are added. Likewise, any items that were previously in the menu but are not bound to the current context are automatically removed from the menu. You never need to manually remove your items from the menu unless you want them to never appear again. For example, if your extension needs to add a context menu item whenever the user visits a certain page, don't create the item when that page loads, and don't remove it when the page unloads. Rather, create your item only once, when your program starts, and supply a context that matches the target URL. Specifying Contexts ------------------- As its name implies, the context menu should be reserved for the occurrence of specific contexts. Contexts can be related to page content or the page itself, but they should never be external to the page. For example, a good use of the menu would be to show an "Edit Image" item when the user right-clicks an image in the page. A bad use would be to show a submenu that listed all the user's tabs, since tabs aren't related to the page or the node the user clicked to open the menu. ### The Page Context First of all, you may not need to specify a context at all. When an item does not specify a context, the *page context* applies. The page context occurs when the user invokes the context menu on a non-interactive portion of the page. Try right-clicking a blank spot in a page, or on text. Make sure that no text is selected. The menu that appears should contain the items "Back", "Forward", "Reload", "Stop", and so on. This is the page context. The page context is appropriate when your item acts on the page as a whole. It does not occur when the user invokes the context menu on a link, image, or other non-text node, or while a selection exists. ### Declarative Contexts You can specify some simple, declarative contexts when you construct a menu item by setting the `context` property of the options object passed to its constructor. Such contexts may be specified with instances of any of the following types. Each is a constructor exported by the `context-menu` module.
PageContext() The page context.
SelectionContext() This context occurs when the menu is invoked on a page that contains a selection.
SelectorContext(selector) This context occurs when the menu is invoked on a node that either matches selector, a CSS selector, or has an ancestor that matches. selector may include multiple selectors separated by commas, e.g., "a[href], img".
URLContext(matchPattern) This context occurs when the menu is invoked on pages with particular URLs. matchPattern is a match pattern string or an array of match pattern strings. When matchPattern is an array, the context occurs when the menu is invoked on a page whose URL matches any of the patterns. These are the same match pattern strings that you use with the page-mod include property. Read more about patterns.
array An array of any of the other types. This context occurs when all contexts in the array occur.
Menu items also have a `context` property that can be used to add and remove declarative contexts after construction. For example: var context = contextMenu.SelectorContext("img"); myMenuItem.context.add(context); myMenuItem.context.remove(context); When a menu item is bound to more than one context, it appears in the menu when all of those contexts occur. ### In Content Scripts To interact with pages in the browser, you create content scripts and pass them when constructing menu items. Only items in the top-level context menu can have content scripts. One of the things you can do in a content script is listen for an event named `"context"`. This event is fired whenever the context menu is about to be shown. If your listener returns true, the menu item associated with the content script is shown in the menu. For example, this is an item that appears whenever the context menu is invoked on a page whose URL contains "mozilla" as a substring: var myItem = contextMenu.Item({ label: "My Mozilla Item", contentScript: 'on("context", function (node) {' + ' return /mozilla/.test(document.URL);' + '});' }); Note that the listener function has a parameter called `node`. This is the node in the page that the user context-clicked to invoke the menu. You can use it to determine whether your item should be shown. You can both specify declarative contexts and listen for contexts in a content script. In that case, the declarative contexts are evaluated first. If they are not current, then your context listener is never called. This example takes advantage of that fact. The listener can be assured that `node` will always be an image: var myItem = contextMenu.Item({ label: "My Mozilla Image Item", context: contextMenu.SelectorContext("img"), contentScript: 'on("context", function (node) {' + ' return /mozilla/.test(node.src);' + '});' }); Your item is shown only when all declarative contexts are current and your context listener returns true. Handling Menu Item Clicks ------------------------- When the user clicks your menu item, an event named `"click"` is dispatched to the item's content script. Content scripts let you interact with pages in the browser, and they also let you handle menu item clicks. Therefore, to handle a click, listen for `"click"` events in your content script like so: var myItem = contextMenu.Item({ label: "My Item", contentScript: 'on("click", function (node, data) {' + ' console.log("Item clicked!");' + '});' }); Note that the listener function has parameters called `node` and `data`. `node` is the node that the user context-clicked to invoke the menu. You can use it when performing some action. `data` is the `data` property of the menu item that was clicked. Since only top-level menu items have content scripts, this comes in handy for `Menu`s with sub-items. For example: var myMenu = contextMenu.Menu({ label: "My Menu", contentScript: 'on("click", function (node, data) {' + ' console.log("You clicked " + data);' + '});', items: [ contextMenu.Item({ label: "Item 1", data: "item1" }), contextMenu.Item({ label: "Item 2", data: "item2" }), contextMenu.Item({ label: "Item 3", data: "item3" }) ] }); Often you will need to collect some kind of information in the click listener and perform an action unrelated to content. To communicate to the menu item associated with the content script, the content script can call the global `postMessage` function, passing it some JSON-able data. The menu item's `onMessage` function will be called with that data. var myItem = contextMenu.Item({ label: "Edit Image", context: contextMenu.SelectorContext("img"), contentScript: 'on("click", function (node, data) {' + ' postMessage(node.src);' + '});', onMessage: function (imgSrc) { openImageEditor(imgSrc); } }); Examples -------- Each of these examples can be added to the top-level scope of your program; you only need to create an item once. See the Introduction above for further discussion. For conciseness, these examples create their content scripts as strings and use the `contentScript` property. In your own add-ons, you will probably want to create your content scripts in separate files and pass their URLs using the `contentScriptFile` property. See [Working with Content Scripts](dev-guide/addon-development/web-content.html) for more information. First, don't forget to import the module: var contextMenu = require("context-menu"); Show an "Edit Page Source" item when the user right-clicks a non-interactive part of the page: var pageSourceItem = contextMenu.Item({ label: "Edit Page Source", contentScript: 'on("click", function (node, data) {' + ' postMessage(document.URL);' + '});', onMessage: function (pageURL) { editSource(pageURL); } }); Show an "Edit Image" item when the menu is invoked on an image: var editImageItem = contextMenu.Item({ label: "Edit Image", context: contextMenu.SelectorContext("img"), contentScript: 'on("click", function (node, data) {' + ' postMessage(node.src);' + '});', onMessage: function (imgSrc) { openImageEditor(imgSrc); } }); Show an "Edit Mozilla Image" item when the menu is invoked on an image in a mozilla.org or mozilla.com page: var editMozImageItem = contextMenu.Item({ label: "Edit Mozilla Image", context: [ contextMenu.URLContext(["*.mozilla.org", "*.mozilla.com"]), contextMenu.SelectorContext("img") ], contentScript: 'on("click", function (node, data) {' + ' postMessage(node.src);' + '});', onMessage: function (imgSrc) { openImageEditor(imgSrc); } }); Show an "Edit Page Images" item when the page contains at least one image: var editImagesItem = contextMenu.Item({ label: "Edit Page Images", // This ensures the item only appears during the page context. context: contextMenu.PageContext(), contentScript: 'on("context", function (node) {' + ' var pageHasImgs = !!document.querySelector("img");' + ' return pageHasImgs;' + '});' + 'on("click", function (node, data) {' + ' var imgs = document.querySelectorAll("img");' + ' var imgSrcs = [];' + ' for (var i = 0 ; i < imgs.length; i++)' + ' imgSrcs.push(imgs[i].src);' + ' postMessage(imgSrcs);' + '});', onMessage: function (imgSrcs) { openImageEditor(imgSrcs); } }); Show a "Search With" menu when the user right-clicks an anchor that searches Google or Wikipedia with the text contained in the anchor: var googleItem = contextMenu.Item({ label: "Google", data: "http://www.google.com/search?q=" }); var wikipediaItem = contextMenu.Item({ label: "Wikipedia", data: "http://en.wikipedia.org/wiki/Special:Search?search=" }); var searchMenu = contextMenu.Menu({ label: "Search With", context: contextMenu.SelectorContext("a[href]"), contentScript: 'on("click", function (node, data) {' + ' var searchURL = data + node.textContent;' + ' window.location.href = searchURL;' + '});', items: [googleItem, wikipediaItem] }); @class A labeled menu item that can perform an action when clicked. @constructor Creates a labeled menu item that can perform an action when clicked. @param options {object} An object with the following keys: @prop label {string} The item's label. It must either be a string or an object that implements `toString()`. @prop [data] {string} An optional arbitrary value to associate with the item. It must be either a string or an object that implements `toString()`. It will be passed to click listeners. @prop [context] {value} If the item is contained in the top-level context menu, this declaratively specifies the context under which the item will appear; see Specifying Contexts above. Ignored if the item is contained in a submenu. @prop [contentScript] {string,array} If the item is contained in the top-level context menu, this is the content script or an array of content scripts that the item can use to interact with the page. Ignored if the item is contained in a submenu. @prop [contentScriptFile] {string,array} If the item is contained in the top-level context menu, this is the local file URL of the content script or an array of such URLs that the item can use to interact with the page. Ignored if the item is contained in a submenu. @prop [onMessage] {function} If the item is contained in the top-level context menu, this function will be called when the content script calls `postMessage`. It will be passed the data that was passed to `postMessage`. Ignored if the item is contained in a submenu. @method Permanently removes the item from the top-level context menu. If the item is not contained in the top-level context menu, this method does nothing. @class A labeled menu item that expands into a submenu. @constructor Creates a labeled menu item that expands into a submenu. @param options {object} An object with the following keys: @prop label {string} The item's label. It must either be a string or an object that implements `toString()`. @prop items {array} An array of menu items that the menu will contain. Each must be an `Item`, `Menu`, or `Separator`. @prop [context] {value} If the menu is contained in the top-level context menu, this declaratively specifies the context under which the menu will appear; see Specifying Contexts above. Ignored if the menu is contained in a submenu. @prop [contentScript] {string,array} If the menu is contained in the top-level context menu, this is the content script or an array of content scripts that the menu can use to interact with the page. Ignored if the menu is contained in a submenu. @prop [contentScriptFile] {string,array} If the menu is contained in the top-level context menu, this is the local file URL of the content script or an array of such URLs that the menu can use to interact with the page. Ignored if the menu is contained in a submenu. @prop [onMessage] {function} If the menu is contained in the top-level context menu, this function will be called when the content script calls `postMessage`. It will be passed the data that was passed to `postMessage`. Ignored if the item is contained in a submenu. @method Permanently removes the menu from the top-level context menu. If the menu is not contained in the top-level context menu, this method does nothing. @class A menu separator. Separators can be contained only in `Menu`s, not in the top-level context menu. @constructor Creates a menu separator. @class @constructor Creates a page context. See Specifying Contexts above. @class @constructor Creates a context that occurs when a page contains a selection. See Specifying Contexts above. @class @constructor Creates a context that matches a given CSS selector. See Specifying Contexts above. @param selector {string} A CSS selector. @class @constructor Creates a context that matches pages with particular URLs. See Specifying Contexts above. @param matchPattern {string,array} A [match pattern](packages/api-utils/docs/match-pattern.html) string or an array of match pattern strings.