Storage.untrackIndexedDBForStorageKeyUnregisters storage key from receiving notifications for IndexedDB.
| Name | Type | Description |
|---|---|---|
storageKey | string | Storage key. |
{
"id": 1,
"method": "Storage.untrackIndexedDBForStorageKey",
"params": {
"storageKey": "storageKey-value"
}
}
{
"id": 1,
"result": {}
}
const result = await send('Storage.untrackIndexedDBForStorageKey', {"storageKey": "storageKey-value"});
console.log(result);