Extensions.uninstallUninstalls an unpacked extension (others not supported) from the profile.
| Name | Type | Description |
|---|---|---|
id | string | Extension id. |
{
"id": 1,
"method": "Extensions.uninstall",
"params": {
"id": "id-value"
}
}
{
"id": 1,
"result": {}
}
const result = await send('Extensions.uninstall', {"id": "id-value"});
console.log(result);