AI-Bridge is a Chrome Extension that adds single-letter "magic" shortcuts to your browser's address bar. Instantly send any website to your favorite AI for analysis — just add a prefix before the domain name.
Inspired by the ssyoutube.com trick for video downloading, but for AI-powered analysis across the entire web.
Add a letter prefix before any domain in your address bar:
| Prefix | AI Model | Example |
|---|---|---|
| ds | DeepSeek | dsyoutube.com/watch?v=... |
| c | ChatGPT | cgithub.com/facebook/react |
| g | Gemini | gwikipedia.org/wiki/SpaceX |
| x | Grok | xmedium.com/some-article |
Works with any website — GitHub, YouTube, Wikipedia, news sites, documentation, and more.
The extension automatically detects the type of content and adjusts the AI prompt:
- Code Repositories (GitHub, GitLab) → Architecture and logic analysis
- Videos (YouTube) → Key takeaways and summary
- Articles (Wikipedia, Medium, News) → 3-bullet point summary
- AI Models (HuggingFace) → Use case and performance overview
- Any other site → General content analysis
- Clone or download this repository.
- Open Chrome and navigate to
chrome://extensions/. - Enable Developer mode (top right toggle).
- Click Load unpacked and select the project folder.
- Done! Start using shortcuts immediately.
- You type
dsyoutube.com/...in the address bar. - Chrome tries to resolve the (non-existent) domain and fails.
- The extension catches the DNS error via
onErrorOccurred. - It detects the magic prefix, extracts the real URL, and redirects to the target AI.
- A content script auto-fills the analysis prompt and submits it.
- Engine: Manifest V3 (MV3)
- Interception:
webNavigation.onErrorOccurred— lightweight, only fires on failed navigations - State:
chrome.storage— persists tasks across login redirects - Automation: Content scripts with per-AI DOM selectors
├── manifest.json # Extension config and permissions
├── background.js # DNS error interception and redirection
├── content.js # AI-specific prompt injection and automation
└── README.md
- No external servers. Everything runs locally in your browser.
- No tracking. No data is collected or sent anywhere.
- No background polling. The extension only activates when a navigation error occurs.
MIT