Firefox 插件,用于 OpenClaw Web UI 的对话历史导航。
- 在页面右侧显示对话历史侧边栏
- 快速跳转到之前的对话
- 自动检测新消息
- 支持用户和助手消息分类
- 打开 Firefox,在地址栏输入:
about:debugging - 点击"此Firefox"
- 点击"临时载入附加组件"
- 选择
manifest.json文件 - 点击"打开"
./build.sh这会生成 ocw-chat-navigator.xpi 文件。
- 安装插件后,在 OpenClaw Web UI 页面右上角会出现一个蓝色按钮 💬
- 点击按钮打开/关闭侧边栏
- 在侧边栏中点击对话条目可以快速跳转
ocw-chat-navigator/
├── manifest.json # 插件配置文件
├── icons/ # 图标文件
│ ├── icon16.png
│ ├── icon48.png
│ ├── icon128.png
│ └── icon.svg
├── lib/ # 核心代码
│ ├── content.js # 主逻辑
│ └── styles.css # 样式
├── popup/ # 弹出窗口
│ ├── popup.html
│ └── popup.js
├── build.sh # 构建脚本
├── .gitignore # Git忽略文件
└── README.md # 说明文档
- 修改
lib/content.js或lib/styles.css - 在
about:debugging页面重新加载插件 - 刷新页面查看效果
git add .
git commit -m "描述修改内容"
git pushMIT License