This commit is contained in:
philipp892 2026-07-14 19:16:22 -07:00 committed by GitHub
commit d0a3e3f518
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 8 additions and 0 deletions

View File

@ -199,6 +199,14 @@ export const CDP_ALLOWLIST: ReadonlyArray<CdpAllowEntry> = Object.freeze([
output: 'untrusted',
justification: 'Inspect properties of an existing remote object. Read-only; output may contain page data.',
},
// ─── Input (synthetic trusted user gestures) ───────────────
{
domain: 'Input',
method: 'dispatchMouseEvent',
scope: 'tab',
output: 'trusted',
justification: 'Trusted mouse gesture for widgets that ignore JS clicks (e.g. Personio Gefahrtarifstelle "Monat auswählen" dropdown). Focused tab only; returns an ack, no page content.',
},
]);
const CDP_ALLOWLIST_INDEX: Map<string, CdpAllowEntry> = new Map(