cs-icon.svg

Create a New Sidebar Extension

Note: Experience Extensions use the legacy approach with extensions. We recommend using the Sidebar UI Location for the Contentstack App Framework to extend the functionality of your apps.

Contentstack allows you to create a custom Sidebar Extension in your stack to analyze your entry content and recommend ideas.

Note: When working within specific branches, extensions added or created will be available only within that particular branch. For example, you are working within the development branch, and you add new Custom Sidebar Extensions to this branch. These custom sidebar extensions will be available only within the development branch. Refer to our Branch-specific Modules document for more information.

To create a custom Sidebar Extension, log in to your Contentstack account, and perform the following steps:

  1. Navigate to your stack and click on the “Settings” icon on the left navigation panel.
  2. Click on Extensions.
  3. On the Extensions page, click on the + New Extension button, and select Create new.
    Create_New_Custom_Widget_1_highlighted.png
  4. In the Select Extension Type window, select Sidebar Extension.
    Click_Sidebar_Extension.png
  5. In the Create New Extension page, enter values in the fields as given below:
    1. Title: Provide a suitable title for your custom Sidebar Extension
      . This title will be visible as a sidebar extension name in the entry page.
    2. Hosting method: Select how you want to host the Sidebar Extension:
      • External Hosting: Select this option for externally hosted Sidebar Extensions. You need to provide the URL in the External hosting URL field that appears below.
      • Hosted on Contentstack: Select this option if you can write the code in the Extension source code field that appears below.

      Additional Resource: If you want to try out sample code for Sidebar Extension in the Extension source code field, browse through the Text Intelligence repository available on GitHub.

    3. Config Parameter: If you have used any config parameters (such as access token) in the source code, specify the value of the parameters in this field.
    4. Scope: Select for which content types this Sidebar Extension will be available. You can choose either All Content Types or Specific Content Types.
  6. Finally, click on Save.

Test Custom Sidebar Extension

When you create your custom extension to integrate with Contentstack, you can follow the steps given below to test the extension and verify if the extension is working fine before releasing it.

  1. To test the extension, first, clone the extension repo that you have built and install the dependencies. Then, edit the HTML, CSS, and JS files from the source folder.
  2. To install the required dependencies, run the following commands in the root folder:
    npm install gulp-cli -g
    npm install
    
  3. To create a new build for the extension, run the following command (index.html):
    gulp build
    
  4. Update/test the extension while developing:
    gulp watch
    
  5. Now, create a server using the Lite Server npm module. Before that, install the Lite Server module by using the following command:
    npm install -g lite-server
    
  6. Then, run the lite-server — in the root folder as follows:
    lite-server
    
    After running the above command, you should see the following:
    Local_server.png

    Make a note of the port no in Access URLs (the localhost URL):

  7. Next, we need to install ngrok to build secure tunnels from a public endpoint (that is the internet) to a locally running server. Issue the following command:
    npm install ngrok -g
    ngrok http <<port number>>
    
    You should see the following:
    ngrok_hosting.png
    Once you run the above command, you will get a URL.
  8. Navigate to the extension page that you created above, and in the Hosting method field, select External hosting and paste the above URL in it.
  9. Save your extension and check the entry where you have added your extension.

You should see your updated changes.

API Reference

Here are the links to the API requests related to this action:

Was this article helpful?
^