Documentation Center

Content Manager: Experience Space Extension

You can deploy extensions to the Experience Space GUI (type = ExperienceSpaceExtension) to tailor the Experience Space user interface to reflect your unique editorial processes and to maximize productivity for authors and editors.

Each extension has the following properties, configured in its properties section in the manifest file, manifest.json:
Property nameProperty description
nameThe name of the Experience Space extension
filesA list of relative paths to the extension files within an Add-on package

This parameter supports wildcards. For example, you could define the a path as "extensionFiles/*.js" to include all JL (JavaScript files) files in the extensionFiles folder.

Here are the contents of an example Experience Space GUI extension as configured in the manifest file:
{
      "name": "ExperienceSpaceExtensionSampleMultipleFiles",     
      "type": "ExperienceSpaceExtension",
      "properties": {
        "files": [
            "file1.js",
            "file2.js",
            "css\\file3.css"
        ]
      }
    }