feat: 实现 Content Script 原位轻量提示 UI

- 新增 uiPopover.ts 实现原位弹窗组件(深色主题、自动定位、自动隐藏)
- 新增 contextMenuHandler.ts 处理右键菜单消息
- 时间戳转换:在点击位置显示转换结果
- 文本统计:显示字符/单词/行数/字节统计
- 更新 messageHandler.ts 挂载右键菜单消息监听
This commit is contained in:
雨霖铃
2026-05-20 20:44:00 +08:00
parent 3fb99ea49f
commit 471e17eedf
3 changed files with 314 additions and 1 deletions
+5 -1
View File
@@ -1 +1,5 @@
export function initMessageHandler() {}
import { initContextMenuHandler } from './contextMenuHandler';
export function initMessageHandler(): void {
initContextMenuHandler();
}