Page.getManifestIconsDeprecated because it's not guaranteed that the returned icon is in fact the one used for PWA installation.
| Name | Type | Description |
|---|---|---|
primaryIcon | string |
{
"id": 1,
"method": "Page.getManifestIcons"
}
{
"id": 1,
"result": {
"primaryIcon": "primaryIcon-value"
}
}
const result = await send('Page.getManifestIcons');
console.log(result);
// {"primaryIcon": "primaryIcon-value"}