Skip to content

Instantly share code, notes, and snippets.

@CostaFot
Created March 24, 2026 22:20
Show Gist options
  • Select an option

  • Save CostaFot/ebd7b90efde5bac702a16eead9414913 to your computer and use it in GitHub Desktop.

Select an option

Save CostaFot/ebd7b90efde5bac702a16eead9414913 to your computer and use it in GitHub Desktop.
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