A Chrome extension that enhances web searches by fetching and summarizing real-time answers from multiple sources using AI. This extension bypasses ads and irrelevant content, giving you concise, accurate results directly in your browser.
- Instant Summaries: Get a concise, AI-generated summary or direct answer to your web queries.
- URL Filtering: Fetches the top 6 relevant URLs, skipping ads and SEO-heavy content.
- Fast AI Inference: Summarization done using Groq API for fast, accurate results.
- Real-Time Updates: Pulls live data from search results to keep answers up-to-date.
Here is a demo video of the extension in action:
- Google Chrome or any Chromium-based browser
- Python 3.x
- Pip (for installing Python packages)
git clone https://github.com/yourusername/your-extension-repo.git
cd your-extension-repoMake sure you’re using a Python virtual environment. You can create one using venv or conda.
python3 -m venv venv
source venv/bin/activate # On Windows, use `venv\Scripts�ctivate`
pip install -r requirements.txt- Open Chrome and go to
chrome://extensions/. - Enable Developer Mode (toggle in the top right).
- Click on Load unpacked.
- Select the project directory where you cloned this repository.
In the same terminal where you installed the Python dependencies:
python server/server.pyAfter the extension is loaded, you should see the extension icon in your browser’s toolbar. Pin the extension by clicking the puzzle piece icon in the toolbar and selecting the extension.
- Go to the Grok website and create an account.
- Generate an API key under the API section.
- Use the open-source model:
mixtral-8x7b-32768. - Open
server.pyand replace the API key placeholder with your actual key:
GROQ_API_KEY = "your_api_key_here" # Replace with your Grok API key
client = Groq(api_key=GROQ_API_KEY)- Click on the extension icon in the toolbar to open the popup.
- Type your search query and get a real-time AI-generated summary directly in your browser.
Feel free to open issues or submit pull requests if you want to contribute. This is an open-source project, and we welcome feedback!