Created
March 24, 2026 22:16
-
-
Save CostaFot/df587d72cdf375282309c0701455326e 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
| { | |
| "manifest_version": 3, | |
| "name": "Ask Claude", | |
| "version": "1.0", | |
| "description": "Right-click selected text to ask Claude", | |
| "permissions": ["contextMenus"], | |
| "background": { | |
| "service_worker": "background.js" | |
| }, | |
| "content_scripts": [ | |
| { | |
| "matches": ["https://claude.ai/*"], | |
| "js": ["content.js"] | |
| } | |
| ] | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment