A Chrome extension that automatically suggests alt text for images you paste into Outlook web emails. Uses Claude AI to generate accurate, accessibility-friendly descriptions.
- Detects images pasted into Outlook compose
- Generates alt text using Claude AI vision
- Conditional model selection: uses Haiku (cheaper) for simple images, Sonnet (more powerful) for complex images
- Smart prompting: concise for simple images, detailed for schedules/tables/text
- Edit suggestions before applying
- Skip option if you don't want alt text
Extension will be available on Chrome Web Store soon
- Clone or download this repository
- Open Chrome and go to
chrome://extensions - Enable "Developer mode" (toggle in top right)
- Click "Load unpacked"
- Select the
outlook-alt-textfolder
- Get a Claude API key from console.anthropic.com
- Click the extension icon in Chrome toolbar
- Enter your API key and click Save
- Open Outlook in your browser (outlook.office.com, outlook.live.com)
- Compose a new email
- Paste an image (screenshot, copied image, etc.)
- If the image doesn't already have alt text, a modal will appear with AI-generated alt text
- Edit if needed and click "Apply Alt Text"
- outlook.office.com
- outlook.office365.com
- outlook.live.com
- Your API key is stored locally in Chrome's secure storage
- Images are sent only to Claude API for analysis
- No data is stored on external servers
- No tracking or analytics
This extension uses the Claude API which has per-request costs. To optimize costs, the extension:
- First uses Claude Haiku to classify image complexity (very low cost)
- For simple images (photos, graphics, icons): uses Haiku for alt text generation (lower cost)
- For complex images (charts, tables, text-heavy images): uses Sonnet for accurate transcription (higher cost)
Approximate costs per image:
- Simple images: ~$0.001-0.003 USD (Haiku classification + Haiku generation)
- Complex images: ~$0.01-0.05 USD (Haiku classification + Sonnet generation)
This conditional approach can reduce costs by 10-50x for simple images while maintaining quality for complex ones.
See Anthropic's pricing for current rates.
MIT License - see LICENSE file for details.
Pull requests welcome! Please open an issue first to discuss proposed changes.