Browser.addPrivacySandboxEnrollmentOverrideAllows a site to use privacy sandbox features that require enrollment without the site actually being enrolled. Only supported on page targets.
| Name | Type | Description |
|---|---|---|
url | string |
{
"id": 1,
"method": "Browser.addPrivacySandboxEnrollmentOverride",
"params": {
"url": "https://example.com"
}
}
{
"id": 1,
"result": {}
}
const result = await send('Browser.addPrivacySandboxEnrollmentOverride', {"url": "https://example.com"});
console.log(result);