* Uninstalls an addon from the current browser session's profile. * * @param {(string|!Promise )} id ID of the addon to uninstall. * @return {!Promise} A promise that will resolve when the operation has * completed. * @see #installAddon
(id)
| 678 | * @see #installAddon |
| 679 | */ |
| 680 | async uninstallAddon(id) { |
| 681 | id = await Promise.resolve(id) |
| 682 | return this.execute(new command.Command(ExtensionCommand.UNINSTALL_ADDON).setParameter('id', id)) |
| 683 | } |
| 684 | |
| 685 | /** |
| 686 | * Take full page screenshot of the visible region |
no test coverage detected