How to Install and Uninstall Edge Extensions (Anniversary Update)?

Edge Extensions is a new feature introduced in the Windows 10 Anniversary Update where you can install available browser extensions from the Store. Here is a walk-through on how to install and uninstall Edge extensions, including an example that uses PowerShell.

Note: Information in this article does not apply to the new Microsoft Edge (Chromium). It’s applicable to the old Microsoft Edge browser only.

Start Microsoft Edge, click the More button (showing three dots/ellipsis symbol), and click Extensions

edge extensions install and uninstall

Click “Get extensions from the Store” which opens the Store app and lists all available Edge extensions.

edge extensions install and uninstall

There aren’t many extensions available for Edge right now, but the number might grow very quickly, especially since Microsoft has released a Chrome extensions converter toolkit for Edge known as Microsoft Edge Extension Toolkit. Developers can leverage this toolkit, should they consider offering their existing Chrome extensions for Edge users.

I installed the Translator extension and it’s added to the Extensions panel in Edge.

edge extensions install and uninstall

 

Uninstalling an Edge Extension

In the Extension panel, right-click an extension and click Uninstall. To show more information about the extension, double-click the item which opens the panel where you can configure the extension. You can turn it off or uninstall it from there, as well.

edge extensions install and uninstall

Uninstalling Edge Extensions Using PowerShell

If for some reason Edge doesn’t start after installing an extension, here is the PowerShell way to uninstall an Edge extension.



Start PowerShell as administrator. To uninstall the translator extension which I installed earlier, first I’d use the following command to find its package name.

Get-AppxPackage *translat*

.. which shows the following info:

edge extensions install and uninstall

Then I’d run one of the following commands to uninstall it.

If there aren’t any multiple items listed, you can simply use a wildcard as below.

Get-AppxPackage *translat* | Remove-AppxPackage

If more results appear for the first command, you’d explicitly mention the package name.

Get-AppxPackage Microsoft.TranslatorforMicrosoftEdge | Remove-AppxPackage

edge extensions install and uninstall

The extension is now uninstalled from Edge.


One small request: If you liked this post, please share this?

One "tiny" share from you would seriously help a lot with the growth of this blog. Some great suggestions:
  • Pin it!
  • Share it to your favorite blog + Facebook, Reddit
  • Tweet it!
So thank you so much for your support. It won't take more than 10 seconds of your time. The share buttons are right below. :)

Ramesh Srinivasan is passionate about Microsoft technologies and he has been a consecutive ten-time recipient of the Microsoft Most Valuable Professional award in the Windows Shell/Desktop Experience category, from 2003 to 2012. He loves to troubleshoot and write about Windows. Ramesh founded Winhelponline.com in 2005.

Leave a Comment