| 154 | // Process all stylesheets on initial load | 154 | // Process all stylesheets on initial load |
| 155 | Array.from(document.styleSheets).forEach(sheet => { | 155 | Array.from(document.styleSheets).forEach(sheet => { |
| 156 | try { | 156 | try { |
| 157 | applyDynamicFocusStyles(sheet, { fromExtension: sheet.href.toLowerCase().includes('scripts/extensions') }); | 157 | applyDynamicFocusStyles(sheet, { fromExtension: sheet.href?.toLowerCase().includes('scripts/extensions') == true }); |
| 158 | } catch (e) { | 158 | } catch (e) { |
| 159 | console.warn('Failed to process stylesheet on initial load:', e); | 159 | console.warn('Failed to process stylesheet on initial load:', e); |
| 160 | } | 160 | } |