Files
zemion 592e0b9f59
Verify / verify (push) Canceled after 0s
Release Binary Tools 0.2.0
2026-09-02 09:05:50 +02:00

63 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.binary-tools",
"name": "Binary Tools",
"version": "0.2.0",
"description": "Convert, inspect and decode bytes locally.",
"entry": "./",
"icon": "./favicon.svg",
"categories": ["developer", "data", "security"],
"tags": [
"binary",
"hex",
"base64",
"cbor",
"messagepack",
"asn1",
"protobuf"
],
"integration": {
"contextVersion": 1,
"launchModes": ["navigate", "new-tab"],
"embedding": "unsupported"
},
"requirements": {
"secureContext": false,
"workers": false,
"indexedDb": false,
"crossOriginIsolated": false,
"topLevelContext": false
},
"io": {
"accepts": [
{ "mediaType": "*/*", "extensions": [] },
{ "mediaType": "application/octet-stream", "extensions": [".bin"] },
{ "mediaType": "text/plain", "extensions": [".txt", ".hex"] }
],
"produces": [
{ "mediaType": "application/octet-stream", "extensions": [".bin"] },
{ "mediaType": "text/plain", "extensions": [".txt", ".hex"] },
{ "mediaType": "application/json", "extensions": [".json"] }
]
},
"capabilities": { "required": [], "optional": ["workers"] },
"privacy": {
"processing": "local",
"fileUploads": true,
"telemetry": false,
"label": "Inputs stay in this browser; nothing is uploaded."
},
"source": {
"repository": "https://git.add-ideas.de/lotobo/binary-tools",
"license": "GPL-3.0-or-later"
},
"actions": [
{
"id": "source",
"label": "Source",
"url": "https://git.add-ideas.de/lotobo/binary-tools"
}
]
}