Site RAG
A Chrome extension for question-answer over websites
As of May 2026, Site RAG has 130 users in the Productivity category.
Usersdown 5.1 percent−5.1%
130
130
Ratingno change0%
—
— reviews
Reviewsno change0%
—
Version
0.0.1
Manifest V3
History
2 snapshotsTracking since Apr 25, 2026.
View as table
| Date | Users | Rating | Reviews | Version |
|---|---|---|---|---|
| Apr 25, 2026 | 137 | — | — | 0.0.1 |
| May 22, 2026 | 119 | — | — | 0.0.1 |
| Now | 130 | — | — | 0.0.1 |
Permissions & access
- Permissions
- storageactiveTab
- Host access
- None declared
Screenshots
About
# Site RAG
[Demo video](https://www.loom.com/share/2ee8496a17774577b2684d6b2981bd1a)

A Chrome extension for asking questions over websites. Site RAG can index a single page of the website, or crawl the entire site. It then generates embeddings for the indexed documents, and stores them in a vector store database.
When a user asks a question, Site RAG will either fetch relevant documents from the current page, or the entire site (customizable).
## Requirements
- [Anthropic API key](https://console.anthropic.com/) - For LLM chat generations
- [OpenAI API key](https://platform.openai.com/) - For embeddings
- [Supabase account](https://supabase.com/) - For vector store
## Setup
First, clone the repository:
```bash
git clone https://github.com/bracesproul/site-rag.git
```
```bash
cd site-rag
```
Then, install the dependencies:
```bash
yarn install
```
and build:
```bash
yarn build
```
### Vector store
To setup the vector store, you need to create a Supabase database. Then, inside the SQL editor, run the following:
```sql
-- Enable the pgvector extension to work with embedding vectors
create extension vector;
-- Create a table to store your documents
create table documents (
id bigserial primary key,
content text, -- corresponds to Document.pageContent
metadata jsonb, -- corresponds to Document.metadata
embedding vector(3072) -- 3072 works for OpenAI embeddings, change if needed
);
-- Create a function to search for documents
create function match_documents (
query_embedding vector(3072),
match_count int DEFAULT null,
filter jsonb DEFAULT '{}'
) returns table (
id bigint,
content text,
metadata jsonb,
embedding jsonb,
similarity float
)
language plpgsql
as $$
#variable_conflict use_column
begin
return query
select
id,
content,
metadata,
(embedding::text)::jsonb as embedding,
1 - (documents.embedding <=> query_embedding) as similarity
from documents
where metadata @> filter
order by documents.embedding <=> query_embedding
limit match_count;
end;
$$;
```
## Usage
To use the extension, go to [chrome://extensions/](chrome://extensions/) and click "Load unpacked". From there, select the `dist` directory of this repository.
Once loaded, open the extension and visit the settings page. Here you can add your API keys, and Supabase credentials. You can also customize the indexing settings, such as chunk size and overlap.Technical
- Version
- 0.0.1
- Manifest
- V3
- Size
- 1.87MiB
- Min Chrome
- 88
- Languages
- 1
- Featured
- No
Metadata
- ID
- flahfjkiodmmchhbdieaihdcpmbofnak
- Developer ID
- u3e86047ec7258777dc0cf72536126c5c
- Developer Email
- [email protected]
- Created
- Feb 6, 2025
- Last Updated (Store)
- Feb 6, 2025
- Last Scraped
- May 22, 2026
- Website
- —
- Privacy Policy
- —
Similar extensions
Alternatives to Site RAG, ranked by description similarity.
WebRAG
网页知识库助手 - Local RAG-powered knowledge base from web pages
3
Chat Index Navigator
Adds a floating index sidebar to ChatGPT to easily navigate long conversations.
7
★ 5.0
awRAG.io Pro
Connect your awRAG.io documents to any AI platform with advanced features - Claude, ChatGPT, Perplexity, Gemini, and more
—
ChatGPT Search Results Extractor
Extract search queries used by ChatGPT to optimize your content for better visibility. Not affiliated with OpenAI or ChatGPT.
4
★ 5.0
Your Rapport
An open source chrome extension for grabbing screenshots from the internet and making them searchable and downloadable.
179
★ 1.7
RagTab: AI Tab Manager & RAG Search
Chat with your open tabs using local RAG. Powered by Gemini, OpenAI or Claude — private, in-browser, zero data leaves your device.
7
★ 5.0
ChatGPT Search Query Revealer
See the actual search queries ChatGPT sends to search engines when browsing the web
29
★ 5.0
Fact Spreader
Fact-check any text or image on the web using AI. Supports DeepSeek, Kimi, ChatGPT, Claude & local LLMs. Privacy-first.
24
★ 5.0
Data sourced from the Chrome Web Store · last verified May 22, 2026.