isExtensionUI function presentation
Last updated: 2026-03-05T11:49:57.418Z
Metrics
LOC: 5
Complexity: 2
Params: 1
Signature
isExtensionUI(el: Element): : boolean
Summary
Returns true if the element belongs to the Fill All extension UI. These elements must be excluded from recording.
Source Code
function isExtensionUI(el: Element): boolean {
return EXTENSION_UI_SELECTORS.some(
(sel) => el.matches?.(sel) || el.closest?.(sel) !== null,
);
}
No outgoing dependencies.
Impact (Incoming)
| Source | Type |
|---|---|
| onInput | calls |
| onChange | calls |
| onClick | calls |
| captureUnrecordedFormFields | calls |
| onSubmit | calls |
| onKeyDown | calls |
| processMutations | calls |