(error)
| 3554 | } |
| 3555 | |
| 3556 | function isRetryableContentScriptTransportError(error) { |
| 3557 | const message = String(typeof error === 'string' ? error : error?.message || ''); |
| 3558 | return /back\/forward cache|message channel is closed|Receiving end does not exist|port closed before a response was received|A listener indicated an asynchronous response|did not respond in \d+s/i.test(message); |
| 3559 | } |
| 3560 | |
| 3561 | const navigationUtils = self.MultiPageBackgroundNavigationUtils?.createNavigationUtils({ |
| 3562 | DEFAULT_SUB2API_URL, |
no outgoing calls
no test coverage detected