← Back to Storage domain

Storage.getRelatedWebsiteSets

Returns the effective Related Website Sets in use by this profile for the browser session. The effective Related Website Sets will not change during a browser session.

Domain: Storage experimental

Returns

NameTypeDescription
setsarray

Example Request

{
  "id": 1,
  "method": "Storage.getRelatedWebsiteSets"
}

Example Response

{
  "id": 1,
  "result": {
    "sets": []
  }
}

Usage in Node.js

const result = await send('Storage.getRelatedWebsiteSets');
console.log(result);
// {"sets": []}