/install browser-history
Skill: browser-history — Search Chrome History
Search Das's Chrome browsing history to find URLs, videos, sites he's visited before.
Chrome History Location
~/Library/Application Support/Google/Chrome/Default/History
SQLite database. Can be queried directly if Chrome isn't locking it.
Search Commands
Basic search (URL or title contains term)
sqlite3 ~/Library/Application\ Support/Google/Chrome/Default/History \
"SELECT url, title FROM urls WHERE url LIKE '%TERM%' OR title LIKE '%TERM%' ORDER BY last_visit_time DESC LIMIT 10;"
YouTube videos only
sqlite3 ~/Library/Application\ Support/Google/Chrome/Default/History \
"SELECT url, title FROM urls WHERE url LIKE '%youtube.com/watch%' AND (url LIKE '%TERM%' OR title LIKE '%TERM%') ORDER BY last_visit_time DESC LIMIT 10;"
Most visited (all time)
sqlite3 ~/Library/Application\ Support/Google/Chrome/Default/History \
"SELECT url, title, visit_count FROM urls ORDER BY visit_count DESC LIMIT 20;"
Recent visits
sqlite3 ~/Library/Application\ Support/Google/Chrome/Default/History \
"SELECT url, title FROM urls ORDER BY last_visit_time DESC LIMIT 20;"
If Database is Locked
Chrome locks the History file while running. Options:
-
Copy first:
cp ~/Library/Application\ Support/Google/Chrome/Default/History /tmp/chrome_history sqlite3 /tmp/chrome_history "SELECT ..." -
Use WAL mode (usually works even when Chrome is open): The sqlite3 command often works anyway due to WAL mode.
Open URL in Chrome
open -a "Google Chrome" "URL_HERE"
Hide/Minimize Chrome
osascript -e 'tell application "System Events" to set visible of process "Google Chrome" to false'
Common Searches for Das
| What | Search Term |
|---|---|
| Brain.fm focus music | brain.fm |
| YouTube videos | youtube.com/watch |
| GitHub repos | github.com |
| Transcript API | transcriptapi or youtubetotranscript |
- Make sure OpenClaw is installed (local or Docker)
- Run the install command in chat:
/install browser-history - After installation, invoke the skill by name or use
/browser-history - Provide required inputs per the skill's parameter spec and get structured output
What is Browser History?
Search and retrieve URLs, titles, and visit counts from Das's Chrome browsing history, including recent visits and YouTube video searches. It is an AI Agent Skill for Claude Code / OpenClaw, with 980 downloads so far.
How do I install Browser History?
Run "/install browser-history" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.
Is Browser History free?
Yes, Browser History is completely free (open-source). You can download, install and use it at no cost.
Which platforms does Browser History support?
Browser History is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).
Who created Browser History?
It is built and maintained by Rohit Das (@therohitdas); the current version is v1.0.0.