Once you've set up your project from a template, the next step is to register your extension and configure it. The process differs slightly depending on whether you want to create a public or a private extension.
All extensions, whether public or private, must be registered on the Sliprail Developer Portal to obtain a unique Extension ID.
If you want your extension to be installable and usable by anyone:
If you're creating an extension for your personal use only:
manifest.jsonThe manifest.json file is your extension's identity card; it contains metadata about your extension. The most critical field is the id.
manifest.json file, find the id field and set its value to the Extension ID you obtained from the Developer Portal.{
"id": "your-unique-extension-id",
"main": "main.js",
...
}
This step is crucial for Sliprail to correctly identify and load your extension. With this done, you are ready to start writing the core logic of your extension.