summeriser.
Free while in beta

Turn any page into
instant clarity.

summeriser. lives in your browser and instantly condenses articles, PDFs, YouTube, Reddit, Substack and more into clean summaries — with Q&A and quizzes built in.

Articles PDFs YouTube Reddit Substack Google Docs Twitter/X
scroll
One-click summaries Q&A grounded in your page Auto-generated quizzes Cloudflare Worker proxy Groq Llama-3.3-70B Free during beta Self-hosted & private Dark & light mode One-click summaries Q&A grounded in your page Auto-generated quizzes Cloudflare Worker proxy Groq Llama-3.3-70B Free during beta Self-hosted & private Dark & light mode
What it does

Everything you need to
read smarter.

Built around how you actually read — no copy-paste, no tab-switching.

One-click bullet summaries

Click Summarize in the popup to get a dense, skimmable bullet list tailored to the page — article, PDF, YouTube, Reddit or social thread.

💬

Ask anything about the page

Use the built-in Q&A tab for follow-up questions. summeriser. answers only from summarized content so responses stay grounded.

🧠

Auto-generated quizzes

Turn any summary into a 5-question multiple-choice quiz — perfect for spaced repetition, exam prep, or checking if a tab is worth saving.

🔒

Safe server-side AI

All AI calls route through your private Cloudflare Worker. Your Groq API key is encrypted on the server, never bundled with the extension.

🌐

Optimized for the modern web

Custom extractors for YouTube, Medium, Reddit, Twitter/X and Substack — with smart fallbacks so you always get usable text.

🎨

Light & dark, your way

A polished popup UI with theme switching, length controls, and micro-animations tuned to feel instant without getting in the way.

0
Pages summarised
0
Accuracy rate
0
Average summary time
0
Content types supported
Under the hood

Built to keep
your data safe.

The extension extracts locally; your Cloudflare Worker handles all AI calls so your key never leaves the server.

1

Click Summarize

Open the extension popup on any supported page and tap Summarize.

2

Text extracted locally

summeriser. extracts text — or forwards the PDF / Doc URL to your Worker.

3

Worker calls Groq

The Worker calls Groq Llama-3.3-70B with a tightly scoped prompt — your key stays encrypted.

4

Results appear instantly

Structured bullets, Q&A, and quizzes — safe from prompt-leak tricks.

background.js + worker.js
// background.js — extension side
chrome.runtime.onMessage.addListener((req, _sender, send) => {
  if (req.action === 'summarize') {
    summarize(req.tabId, req.length)
      .then(s => send({ ok: true, s }))
      .catch(e => send({ ok: false, e: e.message }));
    return true;
  }
});

// worker.js — your key never leaves here
export default {
  async fetch(req, env) {
    const origin = req.headers.get('Origin') ?? '';
    if (!origin.startsWith(`chrome-extension://${env.EXT_ID}`))
      return new Response('Forbidden', { status: 403 });

    // rate-limit → Groq Llama-3.3-70B call
    const result = await callGroq(env.GROQ_KEY, req);
    return Response.json(result);
  }
};
summeriser. · Live popup

On-page popup · No copy-paste needed

  • Extracts clean text from any page, PDF, or Google Doc.
  • Summarizes into concise bullets tuned for reading speed.
  • Ask follow-up questions directly on the summary.
  • Generates quizzes to test your understanding.
  • Works offline for already-extracted content.
Articles PDFs YouTube Reddit Substack Google Docs
The extension

Lives right in your browser.

No tab-switching. No copy-paste. summeriser. sits alongside whatever you're reading and gives you the key points instantly — or quizzes you on them.

Pricing

Generous beta.
Zero credit card.

Free for all early users — self-hosted, unlimited, no strings attached.

✦ Beta plan
$0
Free for all early users
  • Unlimited summaries during beta
  • Q&A chat grounded in your page
  • 5-question quizzes per summary
  • Self-hosted Cloudflare Worker proxy
  • Groq Llama-3.3-70B summarization
Get started free →

Future paid plans will keep self-hosting as an option.

FAQ

Questions,
answered.

Everything you need to know. The Worker code is fully open — self-host everything.

What does summeriser. actually do?+

It's a Chrome extension that extracts text from the page you're on and sends it to your private Cloudflare Worker, which calls Groq to generate bullet-point summaries, answers and quizzes.

Where does the AI key live?+

Your Groq API key is stored as an encrypted Cloudflare Worker secret. It never ships with the extension bundle and is never visible to end users.

What can it summarize?+

Articles, PDFs, Google Docs (shared as "Anyone with the link"), YouTube videos, Reddit threads, Substack posts, and most regular webpages.

Does it work on paywalled content?+

summeriser. extracts whatever is rendered in your browser tab. If you have access and can read it, so can summeriser.

Is there a roadmap?+

Yes — Firefox support, Notion/Obsidian export, and team usage are on the list. You can adapt the Worker to your own stack today.

The team

Built by two people
who actually read.

We built summeriser. because we were drowning in tabs. Two students, one extension, zero tolerance for skimming.

Amitoj Singh Shahi

Amitoj Singh Shahi

Co-founder · Extension & UI

Amitoj built the Chrome extension, the content extractors for every site type, and the popup UI you see when you hit Summarize.

Chrome Extension Content Extraction UI/UX
Vishisht Venkat Bhatnagar

Vishisht Venkat Bhatnagar

Co-founder · Backend & Infrastructure

Vishisht architected the Cloudflare Worker pipeline and Groq integration, keeping API keys locked down and summaries blazing fast.

Cloudflare Workers Groq API Backend