(token)
| 33 | |
| 34 | // Helper function to get API headers with auth |
| 35 | export function getAuthHeaders(token) { |
| 36 | return { |
| 37 | 'Content-Type': 'application/json', |
| 38 | 'Authorization': `Bearer ${token}`, |
| 39 | 'X-Extension-ID': chrome.runtime.id, |
| 40 | 'X-Extension-Version': API_CONFIG.EXTENSION.version |
| 41 | }; |
| 42 | } |
no outgoing calls
no test coverage detected