Created
March 24, 2026 22:20
-
-
Save CostaFot/ebd7b90efde5bac702a16eead9414913 to your computer and use it in GitHub Desktop.
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((info) => { | |
| if (info.menuItemId !== "askClaude") return; | |
| const text = `I selected "${info.selectionText}" on my browser\n\nI would normally Google this. Tell me what I need to know.`; | |
| chrome.tabs.create({ url: `https://claude.ai/new?q=${encodeURIComponent(text)}` }); | |
| }); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment