73 lines
1.7 KiB
JSON
73 lines
1.7 KiB
JSON
{
|
|
"$schema": "https://git.add-ideas.de/lotobo/toolbox-sdk/raw/branch/main/schemas/toolbox-app.v1.schema.json",
|
|
"schemaVersion": 1,
|
|
"id": "de.add-ideas.text-tools",
|
|
"name": "Text Tools",
|
|
"version": "0.2.0",
|
|
"description": "Compose text transforms and export encoding evidence locally.",
|
|
"entry": "./",
|
|
"icon": "./favicon.svg",
|
|
"categories": ["text", "developer", "productivity"],
|
|
"tags": [
|
|
"text",
|
|
"unicode",
|
|
"pipeline",
|
|
"normalize",
|
|
"sort",
|
|
"escape",
|
|
"encoding",
|
|
"newline"
|
|
],
|
|
"integration": {
|
|
"contextVersion": 1,
|
|
"launchModes": ["navigate", "new-tab"],
|
|
"embedding": "unsupported"
|
|
},
|
|
"requirements": {
|
|
"secureContext": false,
|
|
"workers": false,
|
|
"indexedDb": false,
|
|
"crossOriginIsolated": false,
|
|
"topLevelContext": false
|
|
},
|
|
"io": {
|
|
"accepts": [
|
|
{
|
|
"mediaType": "text/*",
|
|
"extensions": [".txt", ".csv", ".md", ".log"],
|
|
"label": "Bounded text files"
|
|
}
|
|
],
|
|
"produces": [
|
|
{
|
|
"mediaType": "text/plain",
|
|
"extensions": [".txt"],
|
|
"label": "Transformed text"
|
|
},
|
|
{
|
|
"mediaType": "application/json",
|
|
"extensions": [".json"],
|
|
"label": "Recipe and artifact evidence"
|
|
}
|
|
]
|
|
},
|
|
"capabilities": { "required": [], "optional": ["web-crypto"] },
|
|
"privacy": {
|
|
"processing": "local",
|
|
"fileUploads": true,
|
|
"telemetry": false,
|
|
"label": "Inputs stay in this browser; nothing is uploaded."
|
|
},
|
|
"source": {
|
|
"repository": "https://git.add-ideas.de/lotobo/text-tools",
|
|
"license": "GPL-3.0-or-later"
|
|
},
|
|
"actions": [
|
|
{
|
|
"id": "source",
|
|
"label": "Source",
|
|
"url": "https://git.add-ideas.de/lotobo/text-tools"
|
|
}
|
|
]
|
|
}
|