/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 |
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install browser-history - 安装完成后,直接呼叫该 Skill 的名称或使用
/browser-history触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
Browser History 是什么?
Search and retrieve URLs, titles, and visit counts from Das's Chrome browsing history, including recent visits and YouTube video searches. 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 980 次。
如何安装 Browser History?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install browser-history」即可一键安装,无需额外配置。
Browser History 是免费的吗?
是的,Browser History 完全免费(开源免费),可自由下载、安装和使用。
Browser History 支持哪些平台?
Browser History 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。
谁开发了 Browser History?
由 Rohit Das(@therohitdas)开发并维护,当前版本 v1.0.0。