Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
You can use SharePoint Framework (SPFx) Extensions to extend the SharePoint user experience. With SPFx Extensions, you can customize more facets of the SharePoint experience, including notification areas, toolbars, list data views, and forms. SPFx Extensions are available in all Microsoft 365 subscriptions for production usage.
SPFx Extensions enable you to extend the SharePoint user experience within modern pages and document libraries, while using the familiar SPFx tools and libraries for client-side development. Specifically, the SPFx includes five extension types:
- Application Customizers: Adds scripts to the page, and accesses well-known HTML element placeholders and extends them with custom renderings.
- Field Customizers: Provides modified views to data for fields within a list.
- Command Sets: Extends the SharePoint command surfaces to add new actions, and provides client-side code that you can use to implement behaviors.
- Form Customizer: Provides a way to associate and override the default new, edit and view form experience of lists and libraries with custom forms by associating components to content types.
- Search Query Modifier: Enables modification of SharePoint search queries before they are executed, allowing you to inject filters, refine results, or dynamically adjust search behavior.
You can build extensions alongside common scripting frameworks, such as Angular and React, or to plain JavaScript projects. For example, you can use React along with components from Fluent UI React to create experiences based on the same components used in Microsoft 365.
Important
The SharePoint page HTML DOM is not an API. You should avoid taking any dependencies on the page DOM structure or CSS styles, which are subject to change and potentially break your solutions. SharePoint Framework provides a rich API to customize the SharePoint experience in reliable ways and is the only supported means to interact with the SharePoint page HTML DOM.