← Back to Page domain

Page.getManifestIcons

Deprecated because it's not guaranteed that the returned icon is in fact the one used for PWA installation.

Domain: Page deprecated

Returns

NameTypeDescription
primaryIconstring

Example Request

{
  "id": 1,
  "method": "Page.getManifestIcons"
}

Example Response

{
  "id": 1,
  "result": {
    "primaryIcon": "primaryIcon-value"
  }
}

Usage in Node.js

const result = await send('Page.getManifestIcons');
console.log(result);
// {"primaryIcon": "primaryIcon-value"}