()
| 56 | } |
| 57 | |
| 58 | export async function getClaudeSessionKey() { |
| 59 | return (await Browser.cookies.get({ url: 'https://claude.ai/', name: 'sessionKey' }))?.value |
| 60 | } |
| 61 | |
| 62 | function isAbortError(err) { |
| 63 | if (!err || typeof err !== 'object') return false |
no outgoing calls
no test coverage detected