glebis

Chrome History — Productivity skill for Claude Code

Productivity community Intermediate

Access and analyze Chrome browser history.

How to install Chrome History

Installs to ~/.claude/skills/chrome-history/

Terminal
git clone --depth 1 https://github.com/glebis/claude-skills /tmp/claude-skills \ && mkdir -p ~/.claude/skills \ && cp -r /tmp/claude-skills/chrome-history ~/.claude/skills/chrome-history

Clones the whole repository, because a skill folder can carry scripts and resources beside its SKILL.md.

What Chrome History does

Query your Chrome browsing history using natural language. Searches **both desktop history AND synced mobile/tablet history**.

Alternatives in Productivity

  • Cs2 Technical Analysis — You are an Expert 3D Technical Director specialized in CS2 (Counter-Strike 2) weapon and item pipelines 14.1k ★
  • New Task — Analyze task complexity and create actionable implementation plan 1.5k ★
  • Octoboss Reorganize Todos — You are the Octoboss — a cross-tentacle orchestrator 1.4k ★

Repository README

This is the README for glebis/claude-skills, shared by 3 entries in this directory. It describes the repository, not this entry specifically.

Chrome History Query Skill

Query your Chrome browsing history using natural language. Searches **both desktop history AND synced mobile/tablet history**.

Features

  • Desktop + Mobile History: Queries SQLite (desktop) and LevelDB (synced devices)
  • Natural Language Queries: "articles I read yesterday" or "scientific papers from last week"
  • Title Search: Direct title/URL search for queries >10 chars without time keywords
  • Smart Filtering: Excludes noise (social media, email, redirects)
  • Content Clustering: Results grouped by type (reading, research, tools, events)
  • Date Range Support: Yesterday, today, last week, last month, last 2 weeks
  • Device Detection: Results show [desktop], [iPhone], [iPad], [Android], [Mac], [Windows] etc.

Installation

Copy to your Claude Code skills folder:

cp -r chrome-history ~/.claude/skills/

Install dependency for synced history (LevelDB parsing):

pip install git+https://github.com/cclgroupltd/ccl_chromium_reader.git

Without this dependency, synced mobile history won't be available (desktop history still works).

Usage

Basic Queries

# Time-based queries (desktop history)
python3 ~/.claude/skills/chrome-history/chrome_history_query.py "articles I read yesterday"
python3 ~/.claude/skills/chrome-history/chrome_history_query.py "research this week"
python3 ~/.claude/skills/chrome-history/chrome_history_query.py "last month"

# Title search (desktop + synced history)
python3 ~/.claude/skills/chrome-history/chrome_history_query.py "Introducing Cosmos"
python3 ~/.claude/skills/chrome-history/chrome_history_query.py "how-to-build-a-rag"

Query Patterns

**By Date:**

  • "yesterday" → previous day only
  • "today" → today only
  • "last week" → past 7 days
  • "last month" → past 30 days
  • "last 2 weeks" → past 14 days

**By Content Type:**

  • "articles I read" → news/blogs/essays (reading cluster)

...