MCPcopy Create free account
hub / github.com/027xiguapi/code-box / sendTextToChat

Function sendTextToChat

contents/chat-integration.ts:152–160  ·  view source on GitHub ↗
(text: string, autoSend = false)

Source from the content-addressed store, hash-verified

150
151// 导出工具函数供其他 content scripts 使用
152export 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
162export function sendImageToChat(images: string[]) {
163 sendMessageToChat({

Callers

nothing calls this directly

Calls 1

sendMessageToChatFunction · 0.85

Tested by

no test coverage detected