Context Menu
function searchUrbanDict(word) {
debug("TESTING STUFF");
};
browser.contextMenus.create({
title: "Search in UrbanDictionary",
contexts: ["selection"], // ContextType
onclick: searchUrbanDict, // A callback function
});ContextTypes
ItemTypes
Last updated