惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

MongoDB | Blog
MongoDB | Blog
J
Java Code Geeks
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
D
DataBreaches.Net
腾讯CDC
GbyAI
GbyAI
I
InfoQ
博客园 - Franky
G
Google Developers Blog
Last Week in AI
Last Week in AI
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
V
Visual Studio Blog
Vercel News
Vercel News
博客园_首页
MyScale Blog
MyScale Blog
Martin Fowler
Martin Fowler
N
Netflix TechBlog - Medium
V
V2EX
T
The Blog of Author Tim Ferriss
M
MIT News - Artificial intelligence
雷峰网
雷峰网
H
Hackread – Cybersecurity News, Data Breaches, AI and More
大猫的无限游戏
大猫的无限游戏
The GitHub Blog
The GitHub Blog

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Coding an Extension that Summarises Web Pages with HTML, ...
Helitha Rupasinghe · 2026-06-23 · via DEV Community

In this post, I will show you how you can create a Google Chrome extension that instantly summarises the current web page. We are going to build TLDR Master, a minimal, privacy-friendly extension that runs entirely in your browser.

The best part? No API keys or external services are required. We will write a lightweight TF-IDF algorithm in pure JavaScript to extract the most important sentences from any article.

Creating the project

First, let's set up our project structure. Create a new folder named TLDR-Master and add the following files:

TLDR-Master
  |- assets
    |- css
      |- popup.css
    |- images
      |- logo16.png
      |- logo48.png
      |- logo128.png
  |- manifest.json
  |- popup.html
  |- popup.js

Part 1: modifying our HTML file.

Our extension will use a popup UI that appears when the user clicks the extension icon. Open popup.html and set up the basic structure.

We need a header with our logo and a theme toggle button. We'll also add a section to display the word count and reading time, a control group to let users choose how many bullet points they want (3, 5, or 7), and a main button to trigger the summarisation.

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <link rel="stylesheet" href="assets/css/popup.css">
</head>
<body>
  <div class="container">
    <div class="header">
      <img src="assets/images/logo128.png" alt="Logo" class="logo">
      <div class="header-text">
        <h2>TL;DR</h2>
        <span class="subtitle">Page Summary</span>
      </div>
      <button id="theme-btn" title="Toggle dark / light mode">
        <!-- SVG Icons for Sun/Moon -->
      </button>
    </div>

    <div id="page-meta" class="page-meta hidden">
      <span id="word-count"></span>
      <span class="dot">·</span>
      <span id="read-time"></span>
    </div>

    <div class="controls">
      <span class="control-label">Bullets</span>
      <div class="pill-group" id="bullet-count">
        <button class="pill" data-value="3">3</button>
        <button class="pill active" data-value="5">5</button>
        <button class="pill" data-value="7">7</button>
      </div>
    </div>

    <div id="loading" class="loading hidden">
      <div class="spinner"></div>
      <span>Analysing page…</span>
    </div>

    <div id="output" class="hidden">
      <div class="summary-header">
        <span class="summary-label">Summary</span>
        <button id="copy-btn" class="icon-btn" title="Copy to clipboard">
          <!-- Copy Icon -->
        </button>
      </div>
      <ul id="summary-list"></ul>
    </div>

    <button id="summarize-btn" class="primary-btn">Summarise Page</button>
  </div>
  <script src="popup.js"></script>
</body>
</html>

Part 2: modifying our CSS file.

Let's make our popup look clean and modern. Open assets/css/popup.css.

We will use CSS variables to easily implement a light and dark mode. We can toggle this by adding a data-theme="dark" attribute to the HTML. We also style the "pill" buttons for the bullet count and a nice spinner for when the extension is analysing the page.

/* ── Design tokens — light mode ── */
:root {
  --bg:          #ffffff;
  --surface:     #f4f4f8;
  --text:        #1a1a2e;
  --accent:      #0076ff;
  --accent-hover:#0062d6;
}

/* ── Dark mode tokens ── */
html[data-theme="dark"] {
  --bg:          #141420;
  --surface:     #1e1e30;
  --text:        #e2e2f0;
  --accent:      #3385ff;
  --accent-hover:#1a6fe8;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  width: 360px;
  margin: 0;
  background: var(--bg);
  color: var(--text);
  transition: background 0.2s, color 0.2s;
}

.primary-btn {
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 11px 16px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  width: 100%;
  transition: background 0.15s;
}

.primary-btn:hover {
  background: var(--accent-hover);
}

Part 3: modifying our JS file.

This is where the magic happens! Open popup.js.

Because we want to keep everything local and private, we aren't sending the page text to an external AI. Instead, we inject a script directly into the active tab to extract the text and score it.

First, let's handle the UI logic, like the theme toggle and the bullet count selection:

// ── Theme toggle ───────────────────────────────────────────────────────────
document.getElementById('theme-btn').addEventListener('click', () => {
  const isDark = document.documentElement.getAttribute('data-theme') === 'dark';
  const next = isDark ? 'light' : 'dark';

  if (next === 'dark') {
    document.documentElement.setAttribute('data-theme', 'dark');
  } else {
    document.documentElement.removeAttribute('data-theme');
  }
  chrome.storage.local.set({ theme: next });
});

// ── Bullet-count pill toggle ───────────────────────────────────────────────
let bulletCount = 5;
document.querySelectorAll('.pill').forEach(btn => {
  btn.addEventListener('click', () => {
    document.querySelectorAll('.pill').forEach(b => b.classList.remove('active'));
    btn.classList.add('active');
    bulletCount = parseInt(btn.dataset.value, 10);
  });
});

Finally, we return the top N sentences to the popup, sorted by their original order in the document, and display them as a bulleted list!

Part 4: modifying our Manifest.Json file.

Finally, we need to tell Chrome about our extension. Open manifest.json. We are using Manifest V3 and we need a few specific permissions:

  • activeTab: To access the currently open tab.
  • scripting: To inject our extraction script into the page.
  • clipboardWrite: So users can copy the summary.
  • storage: To save their preferred theme (light or dark).
{
  "manifest_version": 3,
  "name": "TLDR Web Summariser",
  "version": "1.2",
  "description": "Summarises the current web page instantly without API keys or external dependencies.",
  "permissions": [
    "activeTab",
    "scripting",
    "clipboardWrite",
    "storage"
  ],
  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "assets/images/logo16.png",
      "48": "assets/images/logo48.png",
      "128": "assets/images/logo128.png"
    }
  },
  "icons": {
    "16": "assets/images/logo16.png",
    "48": "assets/images/logo48.png",
    "128": "assets/images/logo128.png"
  }
}

Deployment

Deployment

To test your new extension:

  1. Open Chrome and navigate to chrome://extensions/.
  2. Enable "Developer mode" in the top right corner.
  3. Click "Load unpacked" and select your TLDR-Master folder.
  4. Click the extension icon in your browser toolbar while on any article, and hit "Summarise Page"!

Conclusion

You've just built a fully functional, offline web summariser using only HTML, CSS, and vanilla JavaScript! By leveraging the chrome.scripting API and a classic NLP algorithm, you can provide immense value without relying on paid APIs or compromising user privacy.

Check out the full source code and contribute on GitHub: TLDR Master.