← Back to PWA domain

PWA.uninstall

Uninstalls the given manifest_id and closes any opened app windows.

Domain: PWA experimental

Parameters

NameTypeDescription
manifestIdstring

Example Request

{
  "id": 1,
  "method": "PWA.uninstall",
  "params": {
    "manifestId": "manifestId-value"
  }
}

Example Response

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

Usage in Node.js

const result = await send('PWA.uninstall', {"manifestId": "manifestId-value"});
console.log(result);