# Quickstart - integrate an extension (/en/realtime-media/marketplace/quickstart-integrate/web)

> For AI agents: see the complete documentation index at [llms.txt](/llms.txt).

Extensions are add-ons designed to rapidly extend the functionality of your app. [Extensions Marketplace](https://www.agora.io/en/agora-extensions-marketplace/) is home to extensions that make your app more fun. Extensions provide features such as Audio effects and voice changing, Face filters and background removal, and Live transcription and captioning.

    In the Agora Extensions Marketplace:

    * Vendors create and publish extensions to provide functionality such as audio and video processing.
    * App developers use extensions to quickly implement fun and interactive functionality.

    This page shows you how to integrate an extension from Agora Extensions Marketplace into your app. There can be specific guidance for each extension.

    ## Understand the tech [#understand-the-tech-3]

    An extension accesses voice and video data when it is captured from the user's local device, modifies it, then plays the updated data to local and remote video channels.

    **Extension call workflow**

    ![img](https://assets-docs.agora.io/images/video-sdk/extension-callflow.svg)

    A typical transmission pipeline consists of a chain of procedures, including capture, pre-processing, encoding, transmitting, decoding, post-processing, and play. Audio or video extensions are inserted into either the pre-processing or post-processing procedure, in order to modify the voice or video data in the transmission pipeline.

    ## Prerequisites [#prerequisites-3]

    To test the code used in this page you need to have:

    * An Agora [account](/en/realtime-media/marketplace/manage-agora-account) and [project](/en/realtime-media/marketplace/manage-agora-account).

    * A computer with Internet access.
      Ensure that no firewall is blocking your network communication.

    * Implemented the [SDK quickstart](/en/realtime-media/video/quickstart).

    - A [supported browser](/en/realtime-media/marketplace/reference/supported-platforms).

    - Physical media input devices, such as a camera and a microphone.

    - A JavaScript package manager such as [npm](https://www.npmjs.com/package/npm).

    ## Project setup [#project-setup-3]

    In order to integrate an extension into your project:

    1. **Activate an extension**

    2. Log in to [Agora Console](https://console.agora.io/v2).

    3. In the left navigation panel, click **Extension Marketplace**, then click the extension you want to activate.

    You are now on the extension detail page.

    3. Select a pricing plan and click **Buy and Activate**.
       * If you have already created an Agora project:

         The **Projects** section appears and lists all of your projects.
       * If you have not created an Agora project:

         [Create a new project](/en/realtime-media/marketplace/manage-agora-account), the project appears in the **Projects** section.

    4. Under **Projects** on the extension detail page, find the project in which you want to use the extension, then turn on the switch in the **Action** column.

    5. **Get the apiKey and apiSecret for the extension**

    If required for the extension, to get the extension apiKey and apiSecret, in the **Projects** extension detail page, click **View** in the **Secret** column.

    3. **Download the extension**

    In the extension detail page, click **Download**, you are taken to the npm page for the extension.

    4. **Install the extension in your project**

    5. In the extension npm page, copy the **Install** command.

    6. In the root of your project, install the extension package. For example, for AI Noise Suppression:

       ```bash
       npm i agora-extension-ai-denoiser
       ```

    You are now ready to integrate the extension in your app.

    ## Integrate the extension into your project [#integrate-the-extension-into-your-project-3]

    To use an extension in your Agora project:

    * The implementation procedure varies according to extensions. Each extension vendor provides their own implementation guides, which is validated by Agora before the official release of the extension.

    * To implement the extension in your project, go to the detail page of the extension on [Extensions Marketplace](https://console.agora.io/v2/extensions-marketplace), click **Implementation guides**, and follow the steps on the page.

    To learn how to use a Web extension, see [AI Noise Suppression](/en/realtime-media/video/build/enhance-the-audio-experience/ai-noise-suppression).

    ## Test your implementation [#test-your-implementation-3]

    To ensure that you have integrated the extension in your app:

    1. [Generate a temporary token](/en/realtime-media/marketplace/manage-agora-account) in Agora Console.

    2. In your browser, navigate to the [Agora web demo](https://webdemo.agora.io/basicVideoCall/index.html) and update *App ID*, *Channel*, and *Token* with the values for your temporary token, then click **Join**.

    3. In **main.js**, update `appID`, `channel` and `token` with your values.

    4. Start the dev server

       Execute the following command in the terminal:

       ```bash
       npm run dev
       ```

       Use the URL displayed in the terminal to open the app in your browser.

    5. Try out the extension that you have integrated.

    ## Reference [#reference-3]

    This section contains content that completes the information on this page, or points you to documentation that explains other aspects to this product.

    ### API reference [#api-reference-1]

    * [`AgoraRTC.registerExtensions`](https://api-ref.agora.io/en/video-sdk/web/4.x/interfaces/iagorartc.html#registerextensions)

    
  
      
  
      
  
      
  
      
  
      
  
