← 返回
效率工具 中文

chrome-bookmark-folder-summarizer

Reads Chrome bookmarks and extracts URLs by a user-provided folder name, then generates batch webpage summaries. Use when the user mentions Chrome bookmarks/...
读取Chrome书签,按用户指定的文件夹名称提取URL,批量生成网页摘要。
blacker521
效率工具 clawhub v1.0.1 1 版本 100000 Key: 无需
★ 0
Stars
📥 491
下载
💾 29
安装
1
版本
#latest

概述

Chrome Bookmark Summarizer

Extract webpages from a Chrome bookmark folder (based on the user-provided folder name) and produce structured summaries.

When to Use

  • The user mentions "Chrome bookmarks", "favorites", "bookmark folder", or "summarize saved links"
  • You need to batch-read links by folder name and produce summaries
  • You need to filter URLs from a local bookmarks file before summarizing webpage content

Workflow

  1. Confirm input parameters
    • Required: target folder name (for example, AI Research)
    • Optional: match mode (exact or contains)
    • Optional: whether to recurse into subfolders (default: recursive)
  1. Run the extraction script (JSON output)
python3 "scripts/extract_chrome_bookmarks.py" --folder "AI Research"

Common options:

# Fuzzy folder-name matching
python3 "scripts/extract_chrome_bookmarks.py" --folder "AI" --match-mode contains

# If multiple folders share the same name, return only the first match
python3 "scripts/extract_chrome_bookmarks.py" --folder "AI Research" --pick-first

# Extract only direct links (no subfolders)
python3 "scripts/extract_chrome_bookmarks.py" --folder "AI Research" --non-recursive
  1. Parse output and handle errors
    • ok=false: return a clear error to the user (folder not found, invalid path, etc.)
    • ok=true: read results[].urls[] for downstream summarization
  1. Batch webpage summarization
    • Fetch page content for each URL (prefer full body text; fall back to title + short description on failure)
    • Recommended output structure:
    • Page title
    • Core takeaway (1-2 sentences)
    • Key points (2-4 bullets)
    • Relevance to user goal (one sentence)
  1. Final aggregation
    • Keep the original bookmark order
    • Add a cross-page comparison at the end:
    • Shared themes
    • Differing viewpoints
    • Recommended reading order

Output Template

## Folder: {folder_name}

### 1) {page_title}
- URL: {url}
- Core takeaway: {summary}
- Key points:
  - {point_1}
  - {point_2}
  - {point_3}
- Relevance: {relevance}

### 2) {page_title}
...

## Cross-Page Summary
- Shared themes: ...
- Differences: ...
- Suggested reading order: ...

Notes

  • Default Chrome bookmarks path on macOS:
  • ~/Library/Application Support/Google/Chrome/Default/Bookmarks
  • If the user has multiple Chrome profiles, ask for a specific Bookmarks file path and pass it with --bookmarks.
  • Duplicate folder names may exist; by default all matches are returned. Use --pick-first to keep only one.

版本历史

共 1 个版本

  • v1.0.1 当前
    2026-03-30 02:20 安全 安全

安全检测

腾讯云安全 (Keen)

安全,无风险
查看报告

腾讯云安全 (Sanbu)

安全,无风险
查看报告

🔗 相关推荐

productivity

Obsidian

steipete
操作 Obsidian 仓库(纯 Markdown 笔记)并通过 obsidian-cli 自动化。
★ 432 📥 103,795
productivity

Word / DOCX

ivangdavila
创建、检查和编辑 Microsoft Word 文档及 DOCX 文件,支持样式、编号、修订记录、表格、分节符及兼容性检查等功能。
★ 439 📥 147,722
productivity

Nano Pdf

steipete
使用nano-pdf CLI通过自然语言指令编辑PDF
★ 275 📥 114,862