| 16 | } |
| 17 | |
| 18 | interface ChatResponse { |
| 19 | type: "CHAT_RESPONSE" |
| 20 | payload: { |
| 21 | content: string |
| 22 | timestamp: number |
| 23 | } |
| 24 | } |
| 25 | |
| 26 | // 监听来自 background 的消息 |
| 27 | chrome.runtime.onMessage.addListener((request, sender, sendResponse) => { |
nothing calls this directly
no outgoing calls
no test coverage detected