Created
May 31, 2025 06:35
-
-
Save ayoisaiah/5917a678c6bb7a251bbbecc54884e766 to your computer and use it in GitHub Desktop.
B
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
chrome.contextMenus.onClicked.addListener(async (info) => { | |
if (info.menuItemId === "createCalendarEvent") { | |
const selectedText = info.selectionText; | |
try { | |
console.log(selectedText); | |
} catch (e) { | |
console.log(e); | |
} | |
} | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment