Visual Studio Code Marketplace
The VS Code Marketplace — look up one extension by its publisher.name id and get its install count, rating and latest version, the numbers the extension's…
The VS Code Marketplace — look up one extension by its publisher.name id and get its install count, rating and latest version, the numbers the extension's own Marketplace page shows.
Domain: marketplace.visualstudio.com
Also known as: VS Code Marketplace, Visual Studio Code Marketplace, VSCode Marketplace, Visual Studio Marketplace
Call it directly
bowmark.providers.marketplace_visualstudio.getExtensionStats(extensionId: string): Promise<marketplaceExtensionStats>
bowmark.providers.marketplace_visualstudio.searchExtensions(query: string): Promise<marketplaceSearchResult[]>Functions
| Function | What it does |
|---|---|
getExtensionStats | Looks up one VS Code extension by its "publisher.name" id — the id shown in the extension's own Marketplace URL (e.g. "ms-python.python" for… |
searchExtensions | Full-text searches the VS Code Marketplace for extensions matching query (e.g. "python linting" or "vim keybindings") — the same search the Marketplace's own search box runs — and returns… |
Types
interface marketplaceExtensionStats {
extensionId: string;
displayName: string;
publisherDisplayName: string;
shortDescription: string;
version: string;
lastUpdated: string;
installCount: number;
averageRating: number | null;
ratingCount: number;
}
interface marketplaceSearchResult {
extensionId: string;
displayName: string;
publisherDisplayName: string;
shortDescription: string;
installCount: number;
averageRating: number | null;
ratingCount: number;
}