Use Developer Mode to load an extension directly from a local directory and reload it while developing.
manifest.jsonSliprail validates the registered ID, manifest fields, entry file, and default export. Loading errors are shown in the interface and written to the debug log.
After changing code, rebuild the entry file when necessary and select Reload Extensions in the Developer Mode controls.
Use context.debugLog inside a shortcut or extension lifecycle handler.
handle: (context) => {
context.debugLog('Shortcut started', {
parameter: context.parameter,
})
}
To open the log:
The log includes Sliprail and extension messages, so include a clear extension or shortcut name in each entry you write.
main file does not exist