// Add context menu items browser.contextMenus.create({ id: "nms-cmenu", title: "NoticeMe", contexts: ["selection"] }, () => void browser.runtime.lastError) browser.contextMenus.onClicked.addListener((info, tab) => { if (info.menuItemId === "nms-cmenu" && info.selectionText) { // Handle context menu click with selected text console.log("Context menu clicked with selection:", info.selectionText); } })