(response: Partial<MessageBGtoCS>)
| 213 | const id = message.id; |
| 214 | // We do not need to use scriptId here since every request has a unique id already |
| 215 | const sendResponse = (response: Partial<MessageBGtoCS>) => { |
| 216 | TabManager.sendDocumentMessage(sender.tab!.id!, sender.documentId!, {type: MessageTypeBGtoCS.FETCH_RESPONSE, id, ...response}, sender.frameId!); |
| 217 | }; |
| 218 | |
| 219 | if (__THUNDERBIRD__) { |
| 220 | // In thunderbird some CSS is loaded on a chrome:// URL. |
nothing calls this directly
no test coverage detected