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