# extendify/3.2.1/src/AutoLaunch/templates/split/manifest.json

Extendify, version 3.2.1. 68 lines.

- Page: https://pluginprobe.com/plugins/extendify/3.2.1/code/src/AutoLaunch/templates/split/manifest.json
- Raw: https://pluginprobe.com/plugins/extendify/3.2.1/raw/src/AutoLaunch/templates/split/manifest.json
- Modified: 2026-09-09T18:23:40+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/extendify/3.2.1/code/src/AutoLaunch/templates/split/manifest.json#L10-L20`.

```json
{
	"$schema": "https://json-schema.org/draft/2020-12/schema",
	"$id": "extendify/launch-template/split",
	"title": "Split",
	"type": "object",
	"additionalProperties": false,
	"properties": {
		"--ext-tpl-split-direction": {
			"type": "string",
			"enum": ["row", "row-reverse"],
			"default": "row",
			"x-card": "Columns",
			"x-label": "Text side",
			"x-control": "select",
			"x-options": [
				{
					"value": "row",
					"label": "Left"
				},
				{
					"value": "row-reverse",
					"label": "Right"
				}
			]
		},
		"--ext-tpl-split-text-width": {
			"type": "number",
			"minimum": 220,
			"maximum": 720,
			"default": 420,
			"x-card": "Columns",
			"x-label": "Text width",
			"x-control": "length"
		},
		"--ext-tpl-split-gap": {
			"type": "number",
			"minimum": 0,
			"maximum": 160,
			"default": 48,
			"x-card": "Columns",
			"x-label": "Gap",
			"x-control": "length"
		},
		"--ext-tpl-split-text-align": {
			"type": "string",
			"enum": ["flex-start", "center", "flex-end"],
			"default": "flex-start",
			"x-card": "Columns",
			"x-label": "Text position",
			"x-control": "select",
			"x-options": [
				{
					"value": "flex-start",
					"label": "Top"
				},
				{
					"value": "center",
					"label": "Middle"
				},
				{
					"value": "flex-end",
					"label": "Bottom"
				}
			]
		}
	}
}

```
