Edit

Share via


Extensibility points

Azure DevOps Services | Azure DevOps Server 2022 | Azure DevOps Server 2020

Extensions add capabilities to the Azure DevOps UI and REST surface. This article lists the most common extensibility points you can target and shows the IDs you use in your extension manifest. For an overview of the extension model and contribution patterns, see the Contribution model.

Tip

If you're starting a new Azure DevOps extension, try these maintained sample collections first—they work with current product builds and cover modern scenarios (for example, adding tabs on pull request pages).

If a sample doesn't work in your organization, install it into a personal or test organization and compare the extension manifest's target IDs and API versions with the current docs. For reference and APIs, see:

Hubs and hub groups

Hubs and hub groups provide primary navigation in Azure DevOps (for example, Files, Releases, Backlogs, Queries). A hub belongs to a hub group; for example, the Files hub belongs to the project-level Azure Repos hub group. Hub groups can exist at the organization/collection level or at the project level. Most extensions contribute at the project level.

The following table lists common hub groups and their contribution IDs.

Name ID Level Preview image
Azure Boards ms.vss-work-web.work-hub-group Project/team Screenshot of custom work hub added to Azure Boards.
Azure Repos ms.vss-code-web.code-hub-group Project/team Screenshot of custom work hub added to Azure Repos.
Azure Pipelines ms.vss-build-web.build-release-hub-group Project/team Screenshot of custom hub added to Azure Pipelines.
Azure Test Plans ms.vss-test-web.test-hub-group Project/team Screenshot of custom hub added to Azure Test Plans.
Project settings ms.vss-web.project-admin-hub-group Project Screenshot of custom project admin hub.
Organization settings ms.vss-web.collection-admin-hub-group Organization/collection Screenshot of custom organization admin hub.

Example: contribute a hub

This example shows a hub contribution that targets the Code hub group:

{
  "contributions": [
    {
      "id": "my-custom-hub",
      "type": "ms.vss-web.hub",
      "targets": [
        "ms.vss-code-web.code-hub-group"
      ],
      "properties": {
        "name": "Code Hub",
        "order": 30,
        "uri": "/views/code/custom.html"
      }
    }
  ]
}
  • ms.vss-web.hub is the type of contribution. This type is defined in the vss-web extension published under the ms publisher. This type declares optional and required properties that are required by contributions of this type (for example, name, order, and so on).
  • ms.vss-code-web.code-hub-group is the full ID of the hub group contribution that this hub targets. This contribution is declared in the vss-code-web extension published under the ms publisher.
  • my-custom-hub is the short ID of this contribution; {publisherId}.{extensionId}.my-custom-hub is the full ID.

Add an icon to your menu or toolbar

Add an icon property, so it can be used directly by name.

We recommend providing your own icon. Using your own icon example:

           "name": "Sample hub",
           "uri": "dist/Hub/Hub.html",
           "icon": "asset://static/sample-icon.png",
           "supportsMobile": true
       }

Using the Office UI Fabric Icons example:

            "iconName": "Code",
            "name": "Code Hub",
            "order": 30,
            "uri": "/views/code/custom.html"
        }

Settings for menus and toolbars

Name Target ID
Organization/collection overview toolbar ms.vss-admin-web.collection-overview-toolbar-menu
Collection overview projects grid ms.vss-admin-web.projects-grid-menu
Project overview toolbar ms.vss-admin-web.project-overview-toolbar-menu
Project overview teams grid ms.vss-admin-web.teams-grid-menu

Azure Boards menu and toolbar

Name Target ID Preview image
Work item query menu ms.vss-work-web.work-item-query-menu Screenshot of custom query action added to query menu.
Work item query results toolbar menu ms.vss-work-web.work-item-query-results-toolbar-menu Screenshot of Query Results custom toolbar menu action.
Work item query results menu item ms.vss-work-web.query-result-work-item-menu Screenshot of Query Results Item Menu custom action.
Work item query results tab ms.vss-work-web.query-tabs Screenshot of Query toolbar custom pivot tab.
Work item for context menu ms.vss-work-web.work-item-toolbar-menu Screenshot of custom work item toolbar actions.
Backlog item menu ms.vss-work-web.backlog-item-menu Screenshot of backlog item actions custom menu options.
Sprint board pivot filter menu ms.vss-work-web.sprint-board-pivot-filter-menu Screenshot of sprint board pivot filter menu.
Board pivot filter menu ms.vss-work-web.backlog-board-pivot-filter-menu Screenshot of Backlog Board Pivot Filter Actions.
Card menu ms.vss-work-web.backlog-board-card-item-menu
Product backlog tab ms.vss-work-web.product-backlog-tabs Screenshot of product Backlog Custom Tab.
Iteration backlog tab ms.vss-work-web.iteration-backlog-tabs Screenshot of iterations Backlog Custom Tab.
Portfolio backlog pane ms.vss-work-web.portfolio-backlog-toolpane Screenshot of Portfolio Backlog Custom Pane.
Product backlog pane ms.vss-work-web.requirement-backlog-toolpane Screenshot of Product Backlog Custom Pane.
Iteration backlog pane ms.vss-work-web.iteration-backlog-toolpane Screenshot of Iteration Backlog Custom Pane.

Azure Pipelines menu and toolbar

Name Target ID Preview
Completed build menu ms.vss-build-web.completed-build-menu Screenshot of completed build actions.
Build definitions menu ms.vss-build-web.build-definition-menu Screenshot of build definition actions.
Test results toolbar action ms.vss-test-web.test-results-actions-menu Screenshot of test results toolbar action.
Test result details tab ms.vss-test-web.test-result-details-tab-items Screenshot of test result details tab.
Release pipeline explorer context menu ms.vss-releaseManagement-web.release-definition-explorer-context-menu Screenshot of definition explorer context menu.
Release pipeline explorer toolbar menu ms.vss-releaseManagement-web.release-definition-explorer-toolbar-menu Screenshot of definition explorer toolbar menu.
Release summary toolbar menu ms.vss-releaseManagement-web.release-editor-tool-bar-menu Screenshot of release summary toolbar menu.
Release summary tab ms.vss-releaseManagement-web.release-details-view Screenshot of release summary tab.
Release summary section ms.vss-releaseManagement-web.release-details-summary-tab Screenshot of release summary section.

Azure Pipelines menu and toolbar

Name Target ID Preview
Completed build menu ms.vss-build-web.completed-build-menu Screenshot of completed build actions.
Test results toolbar action ms.vss-test-web.test-results-actions-menu Screenshot of test results toolbar action.
Test result details tab ms.vss-test-web.test-result-details-tab-items Screenshot of test result details tab.
Release pipeline explorer context menu ms.vss-releaseManagement-web.release-definition-explorer-context-menu Screenshot of definition explorer context menu.
Pipeline details view, header button ms.vss-build-web.pipelines-header-menu Screenshot of pipeline details view, header menu.
Pipeline details view, folder context menu ms.vss-build-web.pipelines-folder-menu Screenshot of pipeline details view, folder context menu.

Azure Pipelines tasks

Tasks perform work in a build or release. For more information, see Add a custom pipelines task extension.

Azure Repos menu and toolbar

Name Target ID Preview image
Source item (grid) menu ms.vss-code-web.source-grid-item-menu Screenshot of repos item grid actions.
Source item (tree) menu ms.vss-code-web.source-tree-item-menu Screenshot of repos item tree actions.
Source item (grid and tree) menu ms.vss-code-web.source-item-menu Screenshot of repos item actions.
Change list item menu ms.vss-code-web.change-list-item-menu
Change list summary item menu ms.vss-code-web.change-list-summary-item-menu
Git branches tree menu ms.vss-code-web.git-branches-tree-menu Screenshot of git branches tree.
Git pull request actions menu ms.vss-code-web.pull-request-action-menu Screenshot of git pull request actions.
Git pull request tabs (pivots) ms.vss-code-web.pr-tabs Screenshot of git pull request tab.
Git commit listing menu ms.vss-code-web.git-commit-list-menu Screenshot of git commit list menu.
Git commit detail menu ms.vss-code-web.git-commit-details-menu Screenshot of git commit detail menu.

Azure Test Plans menu and toolbar

Name Target ID Preview image
Test run grid menu ms.vss-test-web.test-run-grid-menu Screenshot of test run grid menu.
Test plan suites tree menu ms.vss-test-web.test-plans-suites-context Screenshot of test plans suites context.
Test plan hub pivot tab ms.vss-test-web.test-plan-pivot-tabs Screenshot of test hub pivot tab.

Other extensibility points

  • Dashboard widget: An extension can contribute a new type of widget that can be added by users to a dashboard. Learn how to contribute a dashboard widget.
  • Work item form: The work item form is enhanced by extensions with new sections, tabs, actions, and custom field renderers. For more information, learn how to extend the work item form.
  • Service hooks: A consumer is the service that events are sent to in Service Hooks. An extension can contribute consumer services. These services get configured by a user (or programmatically), to send events to that service. For more information, see Create a custom consumer for service hooks.
  • Features: Name: Preview feature (hosted only)
    Target ID: ms.vss-web.managed-features
  • Features: Name: Feature (on-premises only)
    Target ID: ms.vss-web.managed-features-onprem