md-this-page-extension
```markdown
What this skill does
```markdown
---
name: md-this-page-extension
description: Browser extension that converts any webpage to clean, LLM-ready Markdown using Mozilla Readability and Turndown
triggers:
- convert webpage to markdown
- md this page extension
- html to markdown browser extension
- extract page content as markdown
- build chrome extension with plasmo
- webpage markdown converter
- readability turndown extension
- llm ready markdown from webpage
---
# MD This Page Extension
> Skill by [ara.so](https://ara.so) — Daily 2026 Skills collection.
A Chrome/Firefox browser extension built with Plasmo + React that converts any webpage into clean, structured Markdown in one click. Uses Mozilla's Readability for content extraction and Turndown for HTML-to-Markdown conversion — optimized for LLM workflows.
---
## What It Does
- Strips navigation, ads, scripts, and boilerplate from any webpage
- Extracts the main content using `@mozilla/readability`
- Converts extracted HTML to Markdown using `turndown`
- Opens a preview tab with copy/download/prompt-copy options
- Supports toggling images, links, metadata, source URL, and page structure output
---
## Tech Stack
| Tool | Purpose |
|------|---------|
| [Plasmo](https://docs.plasmo.com/) | Browser extension framework |
| React | UI |
| Tailwind CSS | Styling |
| `@mozilla/readability` | Content extraction |
| `turndown` | HTML → Markdown |
---
## Installation & Development Setup
### Prerequisites
- Node.js 18+
- pnpm
### Clone & Install
```bash
git clone https://github.com/Ademking/MD-This-Page.git
cd MD-This-Page
pnpm install
```
### Development (Chrome)
```bash
pnpm dev
# Generates: build/chrome-mv3-dev/
```
Load in Chrome:
1. Navigate to `chrome://extensions/`
2. Enable **Developer mode**
3. Click **Load unpacked**
4. Select `build/chrome-mv3-dev`
### Development (Firefox)
```bash
pnpm dev --target=firefox-mv2
# Generates: build/firefox-mv2-dev/
```
### Production Build
```bash
pnpm build
# Output: build/chrome-mv3-prod/
pnpm build --target=firefox-mv2
# Output: build/firefox-mv2-prod/
```
---
## Project Structure
```
md-this-page/
├── background/
│ └── index.ts # Service worker: context menu, keyboard shortcut
├── contents/
│ └── extractor.ts # Content script: Readability extraction
├── tabs/
│ └── preview.tsx # Preview tab UI (React)
├── components/ # Shared React components
├── utils/
│ └── turndown.ts # Turndown configuration/helpers
├── assets/ # Icons, SVGs
├── package.json
└── plasmo.config.ts # Plasmo configuration
```
---
## Key Code Patterns
### 1. Content Script: Extracting Page Content with Readability
```typescript
// contents/extractor.ts
import { Readability } from "@mozilla/readability";
export function extractPageContent(): {
title: string;
content: string;
author: string | null;
publishedTime: string | null;
url: string;
} {
// Clone document so Readability doesn't mutate the live DOM
const documentClone = document.cloneNode(true) as Document;
const reader = new Readability(documentClone);
const article = reader.parse();
return {
title: article?.title ?? document.title,
content: article?.content ?? document.body.innerHTML,
author: article?.byline ?? null,
publishedTime: article?.publishedTime ?? null,
url: window.location.href,
};
}
```
### 2. Converting HTML to Markdown with Turndown
```typescript
// utils/turndown.ts
import TurndownService from "turndown";
export interface ConversionOptions {
keepImages: boolean;
keepLinks: boolean;
includeMetadata: boolean;
includeSourceUrl: boolean;
generatePageMap: boolean;
}
export function htmlToMarkdown(
html: string,
options: ConversionOptions
): string {
const turndownService = new TurndownService({
headingStyle: "atx", // # H1, ## H2 style
codeBlockStyle: "fenced", // ```code``` style
bulletListMarker: "-",
});
// Optionally strip images
if (!options.keepImages) {
turndownService.addRule("removeImages", {
filter: "img",
replacement: () => "",
});
}
// Optionally strip links (keep text only)
if (!options.keepLinks) {
turndownService.addRule("removeLinks", {
filter: "a",
replacement: (content) => content,
});
}
return turndownService.turndown(html);
}
export function buildFullMarkdown(
extracted: { title: string; content: string; author: string | null; publishedTime: string | null; url: string },
options: ConversionOptions
): string {
const lines: string[] = [];
if (options.includeMetadata) {
lines.push(`# ${extracted.title}`);
if (extracted.author) lines.push(`**Author:** ${extracted.author}`);
if (extracted.publishedTime) lines.push(`**Published:** ${extracted.publishedTime}`);
lines.push("");
}
if (options.includeSourceUrl) {
lines.push(`**Source:** ${extracted.url}`);
lines.push("");
}
const markdown = htmlToMarkdown(extracted.content, options);
lines.push(markdown);
return lines.join("\n");
}
```
### 3. Background Service Worker: Context Menu & Shortcut
```typescript
// background/index.ts
import { sendToContentScript } from "@plasmohq/messaging";
// Register context menu item
chrome.runtime.onInstalled.addListener(() => {
chrome.contextMenus.create({
id: "md-this-page",
title: ".MD this page",
contexts: ["page", "selection"],
});
});
// Handle context menu click
chrome.contextMenus.onClicked.addListener((info, tab) => {
if (info.menuItemId === "md-this-page" && tab?.id) {
triggerExtraction(tab.id);
}
});
// Handle keyboard shortcut (Alt+M defined in manifest)
chrome.commands.onCommand.addListener((command) => {
if (command === "trigger-md") {
chrome.tabs.query({ active: true, currentWindow: true }, (tabs) => {
if (tabs[0]?.id) triggerExtraction(tabs[0].id);
});
}
});
async function triggerExtraction(tabId: number) {
// Execute content script to extract content
const results = await chrome.scripting.executeScript({
target: { tabId },
func: () => {
// This runs in page context — calls extractPageContent()
return window.__mdThisPage?.extract();
},
});
const data = results?.[0]?.result;
if (!data) return;
// Open preview tab with extracted data
chrome.storage.session.set({ extractedContent: data }, () => {
chrome.tabs.create({
url: chrome.runtime.getURL("tabs/preview.html"),
});
});
}
```
### 4. Preview Tab: React UI
```tsx
// tabs/preview.tsx
import { useEffect, useState } from "react";
import { buildFullMarkdown, ConversionOptions } from "../utils/turndown";
const DEFAULT_OPTIONS: ConversionOptions = {
keepImages: true,
keepLinks: true,
includeMetadata: true,
includeSourceUrl: true,
generatePageMap: false,
};
export default function PreviewTab() {
const [markdown, setMarkdown] = useState("");
const [options, setOptions] = useState<ConversionOptions>(DEFAULT_OPTIONS);
const [extracted, setExtracted] = useState(null);
useEffect(() => {
chrome.storage.session.get("extractedContent", ({ extractedContent }) => {
if (extractedContent) {
setExtracted(extractedContent);
setMarkdown(buildFullMarkdown(extractedContent, options));
}
});
}, []);
useEffect(() => {
if (extracted) {
setMarkdown(buildFullMarkdown(extracted, options));
}
}, [options, extracted]);
const handleCopy = () => {
navigator.clipboard.writeText(markdown);
};
const handleDownload = () => {
const blob = new Blob([markdown], { type: "text/markdown" });
const url = URL.createObjectURL(blob);
const a = document.createElement("a");
a.href = url;
a.download = `${extracted?.title ?? "page"}.md`;
a.click();
URL.revokeObjectURL(url);
};
const handleCopyAsPrompt = () => {
const prompt = `Please analyze the following content:\n\n${markdown}`;
navigator.clipboard.writeText(prompt);
};
Related in Writing & Docs
jax-development
IncludedUse this skill when the user is writing, debugging, profiling, refactoring, reviewing, benchmarking, parallelising, exporting, or explaining JAX code, or when they mention JAX, jax.numpy, jit, grad, value_and_grad, vmap, scan, lax, random keys, pytrees, jax.Array, sharding, Mesh, PartitionSpec, NamedSharding, pmap, shard_map, Pallas, XLA, StableHLO, checkify, profiler, or the JAX repo. It helps turn NumPy or PyTorch-style code into pure functional JAX, fix tracer/control-flow/shape/PRNG bugs, remove recompiles and host-device syncs, choose transforms and sharding strategies, inspect jaxpr/lowering/IR, and benchmark compiled code correctly.
nature-article-writer
IncludedDrafts, rewrites, diagnostically critiques, and style-calibrates primary research manuscripts for Nature and Nature Portfolio journals. Use when the user wants a Nature-style title, summary paragraph or abstract, introduction, results, discussion, methods, figure legends, presubmission enquiry, cover letter, reviewer response, or when a scientific draft sounds generic, jargon-heavy, structurally weak, or AI-ish and needs precise, broad-reader-friendly prose without inventing data, analyses, or references. Best for primary research articles and letters rather than reviews or press releases unless explicitly adapting one.
deckrd
IncludedDocument-driven framework that derives requirements, specifications, implementation plans, and executable tasks from goals through structured AI dialogue. Use when user says "write requirements", "create spec", "plan implementation", "derive tasks", "structure this feature", "break down into tasks", or "document this module". Also use for reverse engineering existing code into docs (/deckrd rev). Do NOT use for direct code writing — use /deckrd-coder after tasks are generated. Do NOT use when the user only wants to run or fix existing code without planning.
clinical-decision-support
IncludedGenerate professional clinical decision support (CDS) documents for pharmaceutical and clinical research settings, including patient cohort analyses (biomarker-stratified with outcomes) and treatment recommendation reports (evidence-based guidelines with decision algorithms). Supports GRADE evidence grading, statistical analysis (hazard ratios, survival curves, waterfall plots), biomarker integration, and regulatory compliance. Outputs publication-ready LaTeX/PDF format optimized for drug development, clinical research, and evidence synthesis.
handling-sf-data
IncludedSalesforce data operations with 130-point scoring. Use this skill to create, update, delete, bulk import/export, generate test data, and clean up org records using sf CLI and anonymous Apex. TRIGGER when: user creates test data, performs bulk import/export, uses sf data CLI commands, needs data factory patterns for Apex tests, or needs to seed/clean records in a Salesforce org. DO NOT TRIGGER when: SOQL query writing only (use querying-soql), Apex test execution (use running-apex-tests), or metadata deployment (use deploying-metadata).
accelint-ac-to-playwright
IncludedConvert and validate acceptance criteria for Playwright test automation. Use when user asks to (1) review/evaluate/check if AC are ready for automation, (2) assess if AC can be converted as-is, (3) validate AC quality for Playwright, (4) turn AC into tests, (5) generate tests from acceptance criteria, (6) convert .md bullets or .feature Gherkin files to Playwright specs, (7) create test automation from requirements. Handles both bullet-style markdown and Gherkin syntax with JSON test plan generation and validation.