(text: string, autoSend = false)
| 150 | |
| 151 | // 导出工具函数供其他 content scripts 使用 |
| 152 | export function sendTextToChat(text: string, autoSend = false) { |
| 153 | sendMessageToChat({ |
| 154 | type: autoSend ? "CHAT_SEND" : "CHAT_INPUT", |
| 155 | payload: { |
| 156 | text, |
| 157 | autoSend |
| 158 | } |
| 159 | }) |
| 160 | } |
| 161 | |
| 162 | export function sendImageToChat(images: string[]) { |
| 163 | sendMessageToChat({ |
nothing calls this directly
no test coverage detected