Storage.untrackIndexedDBForOriginUnregisters origin from receiving notifications for IndexedDB.
| Name | Type | Description |
|---|---|---|
origin | string | Security origin. |
{
"id": 1,
"method": "Storage.untrackIndexedDBForOrigin",
"params": {
"origin": "origin-value"
}
}
{
"id": 1,
"result": {}
}
const result = await send('Storage.untrackIndexedDBForOrigin', {"origin": "origin-value"});
console.log(result);