65 lines
1.7 KiB
JSON
65 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.rand-tools",
|
|
"name": "Random Tools",
|
|
"version": "0.2.0",
|
|
"description": "Generate secure or reproducible random values locally in the browser.",
|
|
"entry": "./",
|
|
"icon": "./favicon.svg",
|
|
"categories": ["random", "developer", "productivity"],
|
|
"tags": [
|
|
"random",
|
|
"uuid",
|
|
"ulid",
|
|
"dice",
|
|
"shuffle",
|
|
"sample",
|
|
"cards",
|
|
"dates",
|
|
"coordinates"
|
|
],
|
|
"integration": {
|
|
"contextVersion": 1,
|
|
"launchModes": ["navigate", "new-tab"],
|
|
"embedding": "unsupported"
|
|
},
|
|
"requirements": {
|
|
"secureContext": true,
|
|
"workers": false,
|
|
"indexedDb": false,
|
|
"crossOriginIsolated": false,
|
|
"topLevelContext": false
|
|
},
|
|
"io": {
|
|
"accepts": [
|
|
{ "mediaType": "text/csv", "extensions": [".csv"] },
|
|
{ "mediaType": "application/json", "extensions": [".json"] },
|
|
{ "mediaType": "text/plain", "extensions": [".txt"] }
|
|
],
|
|
"produces": [
|
|
{ "mediaType": "application/json", "extensions": [".json"] },
|
|
{ "mediaType": "text/csv", "extensions": [".csv"] },
|
|
{ "mediaType": "text/plain", "extensions": [".txt"] }
|
|
]
|
|
},
|
|
"capabilities": { "required": ["secure-random"], "optional": [] },
|
|
"privacy": {
|
|
"processing": "local",
|
|
"fileUploads": false,
|
|
"telemetry": false,
|
|
"label": "All generation runs locally; the application makes no third-party requests."
|
|
},
|
|
"source": {
|
|
"repository": "https://git.add-ideas.de/lotobo/rand-tools",
|
|
"license": "GPL-3.0-or-later"
|
|
},
|
|
"actions": [
|
|
{
|
|
"id": "source",
|
|
"label": "Source",
|
|
"url": "https://git.add-ideas.de/lotobo/rand-tools"
|
|
}
|
|
]
|
|
}
|