02-Extension Marketplace
02-Extension Marketplace
com/docs/editor/extension-marketplace
(https://vscode.dev/github/microsoft/vscode-docs/blob/main/docs/editor/extension-marketplace.md)
Extension Marketplace
The features that Visual Studio Code includes out-of-the-box are just the start. VS Code extensions let
you add languages, debuggers, and tools to your installation to support your development workflow. VS
Code's rich extensibility model lets extension authors plug directly into the VS Code UI and contribute
functionality through the same APIs used by VS Code. This article explains how to find, install, and
manage VS Code extensions from the Visual Studio Code Marketplace (https://
marketplace.visualstudio.com/VSCode).
You can browse and install extensions from within VS Code. Bring up the Extensions view by clicking on
the Extensions icon in the Activity Bar on the side of VS Code or the View: Extensions command ( ⇧⌘X ).
This will show you a list of the most popular VS Code extensions on the VS Code Marketplace (https://
marketplace.visualstudio.com/VSCode).
Each extension in the list includes a brief description, the publisher, the download count, and a five star
rating. You can select the extension item to display the extension's details page where you can learn more.
Note
If your computer's Internet access goes through a proxy server, you will need to configure the proxy
server. See Proxy server support (/docs/setup/network#_proxy-server-support) for details.
Install an extension
To install an extension, select the Install button. Once the installation is complete, the Install button will
change to the Manage gear button.
Important
Extensions have the same permissions as VS Code itself. As of VS Code release 1.97, when you first
install an extension from a third-party publisher, VS Code shows a dialog prompting you to confirm
that you trust the extension publisher. Get more information about extension runtime security (/docs/
editor/extension-runtime-security) and how to protect yourself from malicious extensions.
If you want to install a specific version of an extension, right-click the extension and select Install Another
Version. You can then select a version from the available list.
When Settings Sync (/docs/editor/settings-sync) is enabled, you can share your VS Code configurations,
such as extensions, across your machines. To install an extension and not sync it across your machines,
right-click the extension and select Install (Do not Sync).
In the Extensions view ( ⇧⌘X ), type 'todo' in the search box to filter the Marketplace offerings to
extensions with 'todo' in the title or metadata. You should see the TODO Highlight extension in the list.
An extension is uniquely identified by its publisher and extension IDs. If you select the TODO Highlight
extension, you will see the Extension details page, where you can find the extension ID, in this case,
wayou.vscode-todo-highlight . Knowing the extension ID can be helpful if there are several similarly
named extensions.
Select the Install button, and VS Code will download and install the extension from the Marketplace. When
the installation is complete, the Install button will be replaced with a Manage gear button.
To see the TODO Highlight extension in action, open any source code file and add the text 'TODO:' and
you will see the text highlighted.
The TODO Highlight extension contributes the commands, TODO-Highlight: List highlighted annotations
and TODO-Highlight: Toggle highlight, that you can find in the Command Palette ( ⇧⌘P ). The TODO-
Highlight: Toggle highlight command lets you quickly disable or enable highlighting.
The extension also provides settings for tuning its behavior, which you can find in the Settings editor ( ⌘, ).
For example, you might want the text search to be case insensitive and you can uncheck the
Todohighlight: Is Case Sensitive setting.
If an extension doesn't provide the functionality you want, you can always Uninstall the extension from the
Manage button context menu.
This has been just one example of how to install and use an extension. The VS Code Marketplace has
thousands of extensions supporting hundreds of programming languages and tasks. Everything from full
featured language support for Java (https://marketplace.visualstudio.com/items?itemName=redhat.java),
Python (https://marketplace.visualstudio.com/items?itemName=ms-python.python), Go (https://
marketplace.visualstudio.com/items?itemName=golang.Go), and C++ (https://
marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools) to simple extensions that create
Extension details
On the extension details page, you can read the extension's README and review the extension's:
• Feature Contributions - The extension's additions to VS Code such as settings, commands and
keyboard shortcuts, language grammars, debugger, etc.
• Changelog - The extension repository CHANGELOG if available.
• Dependencies - Lists if the extension depends on any other extensions.
If an extension is an Extension Pack, the Extension Pack section will display which extensions will be
installed when you install the pack. Extension Packs (/api/references/extension-manifest#_extension-
packs) bundle separate extensions together so they can be easily installed at one time.
You can sort the extension list by Install Count, Rating, Name, Published Date, or Updated Date in either
ascending or descending order. You can learn more about extension search filters below.
You can run additional Extensions view commands via the ... View and More Actions button.
Through this context menu you can control extension updates, enable or disable all extensions, and use
the Extension Bisect (https://code.visualstudio.com/blogs/2021/02/16/extension-bisect) utility to isolate
problematic extension behavior.
For example, typing 'python' will bring up a list of Python language extensions:
If you know the exact identifier for an extension you're looking for, you can use the @id: prefix, for
example @id:vue.volar . Additionally, to filter or sort results, you can use the filter and sort commands,
detailed below.
Manage extensions
VS Code makes it easy to manage your extensions. You can install, disable, update, and uninstall
extensions through the Extensions view, the Command Palette (commands have the Extensions: prefix)
or command-line switches.
Uninstall an extension
To uninstall an extension, select the Manage gear button at the right of an extension entry and then
choose Uninstall from the dropdown menu. This will uninstall the extension and prompt you to restart the
extension host (Restart Extensions).
Disable an extension
If you don't want to permanently remove an extension, you can instead temporarily disable the extension
by clicking the gear button at the right of an extension entry. You can disable an extension globally or just
for your current Workspace. You will be prompted to restart the extension host (Restart Extensions) after
you disable an extension.
If you want to quickly disable all installed extensions, there is a Disable All Installed Extensions command
in the Command Palette and More Actions ( ... ) dropdown menu.
Extensions remain disabled for all VS Code sessions until you re-enable them.
Enable an extension
Similarly if you have disabled an extension (it will be in the Disabled section of the list and marked
Disabled), you can re-enable it with the Enable or Enable (Workspace) commands in the dropdown
menu.
There is also an Enable All Extensions command in the More Actions ( ... ) dropdown menu.
Extension auto-update
VS Code checks for extension updates and installs them automatically. After an update, you are prompted
to restart the extension host (Restart Extensions).
If you'd rather update your extensions manually, you can disable auto-update with the Disable Auto
Update for All Extensions command or the corresponding action in the Extensions view. You can also
configure the ! (vscode://settings/extensions.autoUpdate)extensions.autoUpdate setting (/docs/
getstarted/settings). Use the Enable Auto Update for All Extensions command to re-enable auto update.
You can also configure auto update for individual extensions by right-clicking on an extension and toggling
the Auto Update item.
If you don't want VS Code to even check for updates, you can set the
! (vscode://settings/extensions.autoCheckUpdates)extensions.autoCheckUpdates setting to false.
Select the Update button for the outdated extension. The update will be installed, and you'll be prompted
to restart the extension host (Restart Extensions). You can also update all your outdated extensions at
one time with the Update All Extensions command.
If you also have automatic checking for updates disabled, you can use the Check for Extension Updates
command to check which of your extensions can be updated.
Recommended extensions
You can see a list of recommended extensions using Show Recommended Extensions, which sets the
@recommended filter. Extension recommendations can either be:
See the section below to learn how to contribute recommendations for other users in your project.
Ignoring recommendations
To dismiss a recommendation, select on the extension item to open the Details page and then select the
Manage gear button to display the context menu. Select the Ignore Recommendation menu item. Ignored
recommendations will no longer be recommended to you.
Configuring extensions
VS Code extensions may have very different configurations and requirements. Some extensions contribute
settings (/docs/getstarted/settings) to VS Code, which can be modified in the Settings editor. Other
extensions may have their own configuration files. Extensions may also require installation and setup of
additional components like compilers, debuggers, and command-line tools. Consult the extension's
README (visible in the Extensions view details page) or go to the extension page on the VS Code
Marketplace (https://marketplace.visualstudio.com/VSCode) (click on the extension name in the details
page). Many extensions are open source and have a link to their repository on their Marketplace page.
To make it easier to automate and configure VS Code, it is possible to list, install, and uninstall extensions
from the command line (/docs/editor/command-line). When identifying an extension, provide the full name
of the form publisher.extension , for example ms-python.python .
Example:
You can see the extension ID on the extension details page under the Marketplace Info.
The Extensions view search box supports filters to help you find and manage extensions. You may have
seen filters such as @installed and @recommended if you used the commands Show Installed
Extensions and Show Recommended Extensions. Also, there are filters available to let you sort by
popularity or ratings and search by category (for example 'Linters') and tags (for example 'node'). You can
see a complete listing of all filters and sort commands by typing @ in the extensions search box and
navigating through the suggestions:
• @builtin - Show extensions that come with VS Code. Grouped by type (Programming Languages,
Themes, etc.).
• @deprecated - Show deprecated extensions.
• @disabled - Show disabled installed extensions.
• @enabled - Show enabled installed extensions. Extensions can be individually enabled/disabled.
• @featured - Show featured extensions.
• @installed - Show installed extensions.
• @popular - Show popular extensions.
These filters can be combined as well. For example: Use @installed @category:themes to view all
installed themes.
If no filter is provided, the Extensions view displays the currently installed and recommended extensions.
Sorting
You can sort extensions with the @sort filter, which can take the following values:
You can filter on category and tag by using category: and tag: .
Supported categories are: [Azure, Data Science, Debuggers, Education, Extension Packs,
Formatters, Keymaps, Language Packs, Linters, Machine Learning, Notebooks, Others,
Programming Languages, SCM Providers, Snippets, Testing, Themes, Visualization] . They can
be accessed through IntelliSense in the extensions search box:
Note that you must surround the category name in quotes if it is more than one word (for example,
category:"SCM Providers" ).
Tags may contain any string and are not provided by IntelliSense, so review the Marketplace to find helpful
tags.
You can manually install a VS Code extension packaged in a .vsix file. Using the Install from VSIX
command in the Extensions view command dropdown, or the Extensions: Install from VSIX command in
the Command Palette, point to the .vsix file.
You can also install using the VS Code --install-extension command-line switch providing the path to
the .vsix file.
You may provide the --install-extension multiple times on the command line to install multiple
extensions at once.
Note
When you install an extension via VSIX, auto update for that extension is disabled by default.
If you'd like to learn more about packaging and publishing extensions, see our Publishing Extensions (/api/
working-with-extensions/publishing-extension) article in the Extension API.
A good set of extensions can make working with a particular workspace or programming language more
productive and you'd often like to share this list with your team or colleagues. You can create a
recommended list of extensions for a workspace with the Extensions: Configure Recommended
Extensions (Workspace Folder) command.
In a single folder workspace, the command creates an extensions.json file located in the workspace
.vscode folder where you can add a list of extensions identifiers ({publisherName}.{extensionName}).
{ Copy
"recommendations": ["dbaeumer.vscode-eslint", "esbenp.prettier-vscode"]
}
An extension is identified using its publisher identifier and extension identifier publisher.extension . You
can see the name on the extension's detail page. VS Code will provide you with auto-completion for
installed extensions inside these files.
VS Code prompts a user to install the recommended extensions when a workspace is opened for the first
time. The user can also review the list with the Extensions: Show Recommended Extensions command.
Next steps
• Extension API (/api) - Start learning about the VS Code extension API.
• Your First Extension (/api/get-started/your-first-extension) - Try creating a simple Hello World
extension.
• Publishing to the Marketplace (/api/working-with-extensions/publishing-extension) - Publish your
own extension to the VS Code Marketplace.
Common questions
• Windows %USERPROFILE%\.vscode\extensions
• macOS ~/.vscode/extensions
• Linux ~/.vscode/extensions
You can change the location by launching VS Code with the --extensions-dir <dir> command-line
option (/docs/editor/command-line).
To download an extension, search for it in the Extensions view, right-click on an extension from the results,
and select Download VSIX.
Note
The download option is available as of VS Code release 1.96, and is only available for extensions that
are not installed yet.
! (vscode://settings/
• extensions.showRecommendationsOnlyOnDemand)extensions.showRecommendationsOnlyOnDemand
- Set to true to remove the RECOMMENDED section.
• ! (vscode://settings/extensions.ignoreRecommendations)extensions.ignoreRecommendations - Set
to true to silence extension recommendation notifications.
The Show Recommended Extensions command is always available if you want to see recommendations.
As of VS Code release 1.97, when you first install an extension from a third-party publisher, VS Code shows
a dialog prompting you to confirm that you trust the extension publisher.
When you install an extension, you might see the following error message: Cannot install extension
because Visual Studio Code cannot verify the extension signature .
This error can be caused by a variety of reasons, such as an unsupported environment or even (unlikely)
package integrity issues. Should you encounter this error, exercise caution before deciding to install
anyway.
It's recommended that you contact the Visual Studio Marketplace team
(mailto:[email protected]?subject=Extension%20Signature%20Verification%20Issue) to
report the issue. Make sure to include the extension ID. If you want to disable extension signature
verification, you can use the ! (vscode://settings/extensions.verifySignature)extensions.verifySignature
setting.
Yes No
02/06/2025
Follow @code(https://go.microsoft.com/fwlink/?LinkID=533687)
Request features(https://go.microsoft.com/fwlink/?LinkID=533482)
Report issues(https://www.github.com/Microsoft/vscode/issues)
Watch videos(https://www.youtube.com/channel/UCs5Y5_7XK8HLDX0SLNwkd3w)
(https://
www.microsoft.com)
(https://go.microsoft.com/fwlink/?LinkID=533687)
(https://github.com/microsoft/vscode) (https://www.youtube.com/@code)
Support (https://support.serviceshub.microsoft.com/supportforbusiness/create?sapId=d66407ed-3967-
b000-4cfb-2c318cad363d)
Privacy (https://go.microsoft.com/fwlink/?LinkId=521839)
Terms of Use (https://www.microsoft.com/legal/terms-of-use) License (/License)