← Back to Storage domain

Storage.untrackIndexedDBForOrigin

Unregisters origin from receiving notifications for IndexedDB.

Domain: Storage experimental

Parameters

NameTypeDescription
originstringSecurity origin.

Example Request

{
  "id": 1,
  "method": "Storage.untrackIndexedDBForOrigin",
  "params": {
    "origin": "origin-value"
  }
}

Example Response

{
  "id": 1,
  "result": {}
}

Usage in Node.js

const result = await send('Storage.untrackIndexedDBForOrigin', {"origin": "origin-value"});
console.log(result);