A Chrome extension that uses on-device AI to provide quick, relevant answers about any webpage's content.
- 🤖 On-device AI processing for privacy and speed
- 🎯 Smart content extraction using Readability
- 🔍 Advanced BM25 search algorithm for finding relevant context
- 💡 Natural language question answering
- ⚡ Fast and responsive interface
- 🎨 Dark mode UI with smooth animations
- The extension extracts the main content from the webpage using ReadabilitySAX
- Content is split into paragraphs and indexed using BM25 algorithm
- When you ask a question, the most relevant paragraphs are selected
- The on-device AI model generates a concise answer based on the selected context
- Frontend: Vanilla JavaScript, HTML, CSS
- Content Processing:
- ReadabilitySAX for content extraction
- TurndownService for HTML to text conversion
- Custom BM25 implementation for relevance ranking
- AI: Uses the Chrome Extension AI API for on-device processing
If you download the release directly from GitHub, then you can skip steps 1, 2 and 3.
- Clone this repository
npm install
npm run build
- Open Chrome and navigate to
chrome://extensions/
- Enable "Developer mode"
- Click "Load unpacked" and select the
dist
directory
For inspiration, check out the example prompts below.
- Navigate to any webpage with article content
- Click the RAGnificent extension icon
- Type your question about the page content
- Click "Ask Question" to get an AI-generated answer
- Use "Reset" to clear the response and start over
The project uses a modular structure:
popup.html/js
: Extension UI and user interactioncontent.js
: Webpage content processing and AI interactionlib/
: Utility functions and core algorithmsbm25.js
: Search relevance rankingsaxParser.js
: HTML parsing utilities
RAGnificent works well on example prompts like the following:
- What is the central argument or thesis of the web article?
- Could you summarize the key points in the article?
- What evidence or data does the author provide to support their claims?
- Are there any counterarguments or alternative perspectives discussed?
- What conclusion does the author reach by the end?
- What seems to be the author's primary objective in writing this article?
- Does the author show any explicit or implied biases in presenting information?
- What tone does the author use—formal, conversational, critical, or neutral?
- Does the author reference external sources/experts? If so, what are they?
- What key statistics are mentioned in the article?
- What important dates or events are identified?
- What technical terms or jargon are used and what do they mean?
- Is any new research or breakthrough information discussed?
- What main examples or case studies are included?
- Can claims be verified against provided data?
- Are sources cited and how reliable are they?
- Do any elements seem overstated based on content?
- Is anything unclear or underexplained?
- How does this compare with other articles on the topic?
- Does it build on or refute prior research/consensus?
- What larger trends does it reference or relate to?
- How does it approach the topic differently than others?
- What specific actions/changes are recommended?
- What implications are hinted at but not fully explored?
- How could this affect future developments in the field?
- What questions remain unanswered?
- Could this mislead someone unfamiliar with the topic?
- What parts would spark the most debate?
- What other resources would help understand the context?