PWA.uninstallUninstalls the given manifest_id and closes any opened app windows.
| Name | Type | Description |
|---|---|---|
manifestId | string |
{
"id": 1,
"method": "PWA.uninstall",
"params": {
"manifestId": "manifestId-value"
}
}
{
"id": 1,
"result": {}
}
const result = await send('PWA.uninstall', {"manifestId": "manifestId-value"});
console.log(result);