A Chrome extension that lets you instantly research any term or sentence without leaving your page. Get quick AI-powered summaries and dive deeper with a contextual chatbot.
Watch the setup and usage tutorial: YouTube Demo
git clone https://github.com/Ritesh381/searchThatTerm.git
Or download the ZIP file from GitHub and extract it.
chrome://extensions/extension folderSearchThatTerm/
├── README.md
├── landing-page/
│ ├── index.html # Landing page
│ └── privicy-policy.html # Privacy policy
└── extension/
├── manifest.json # Extension configuration (Manifest V3)
├── background/
│ └── background.js # Service worker for API calls
├── content/
│ ├── content.css # Popup styling
│ └── content.js # Text selection & UI logic
├── popup/
│ ├── popup.html # Settings page
│ ├── popup.css # Settings styling
│ └── popup.js # Settings logic
└── icons/
├── icon16.png
├── icon32.png
├── icon48.png
└── icon128.png
The extension is designed with user privacy as a priority:
Local storage only: All user settings (API key, model preferences) are stored locally in Chrome’s extension storage. No user data is stored on external servers.
User-initiated requests only: The extension only sends data to OpenRouter when you explicitly click the trigger button. There is no background data collection.
Minimal data transmission: Only the selected text and surrounding context are sent to OpenRouter. No other page content, URLs, or metadata are transmitted.
No analytics: The extension does not include any analytics, tracking, or telemetry code.
Third-party data handling: Text sent to OpenRouter is subject to OpenRouter’s privacy policy and terms of service. Review their policies at https://openrouter.ai/privacy.
Popup doesn’t appear?
chrome://extensions/Getting errors?
Extension not loading?
extension folder (not the root folder) when loading unpackedContributions are welcome! Feel free to open issues or submit pull requests.
MIT License - Feel free to modify and distribute!