Files
zemion fe578f46bd
Verify / verify (push) Canceled after 0s
Release Archive Tools 0.2.0
2026-09-02 09:34:59 +02:00

105 lines
2.8 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.archive-tools",
"name": "Archive Tools",
"version": "0.2.0",
"description": "Inspect, create, compare and safely repackage archives locally, including structural 7z/RAR evidence.",
"entry": "./",
"icon": "./favicon.svg",
"categories": ["files", "archives", "developer"],
"tags": [
"zip",
"tar",
"gzip",
"extract",
"archive",
"aes",
"zipcrypto",
"compare",
"7z",
"rar"
],
"integration": {
"contextVersion": 1,
"launchModes": ["navigate", "new-tab"],
"embedding": "unsupported"
},
"requirements": {
"secureContext": false,
"workers": false,
"indexedDb": false,
"crossOriginIsolated": false,
"topLevelContext": false
},
"io": {
"accepts": [
{
"mediaType": "application/zip",
"extensions": [".zip"],
"label": "ZIP and ZIP64, including AES or ZipCrypto entries"
},
{
"mediaType": "application/x-tar",
"extensions": [".tar"],
"label": "TAR, USTAR and bounded PAX/GNU metadata"
},
{
"mediaType": "application/gzip",
"extensions": [".gz", ".tgz", ".tar.gz"],
"label": "gzip and tar.gz, including concatenated members"
},
{
"mediaType": "application/x-7z-compressed",
"extensions": [".7z"],
"label": "7z structural headers and safe plain metadata; decompression unsupported"
},
{
"mediaType": "application/vnd.rar",
"extensions": [".rar"],
"label": "RAR4/RAR5 plaintext header inventory; decompression unsupported"
}
],
"produces": [
{
"mediaType": "application/zip",
"extensions": [".zip"],
"label": "ZIP, AES-256 ZIP or legacy ZipCrypto ZIP"
},
{
"mediaType": "application/x-tar",
"extensions": [".tar"],
"label": "Deterministic TAR/PAX"
},
{
"mediaType": "application/gzip",
"extensions": [".tgz", ".tar.gz"],
"label": "Deterministic tar.gz"
},
{
"mediaType": "application/json",
"extensions": [".json"],
"label": "Inspection and comparison reports"
}
]
},
"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/archive-tools",
"license": "GPL-3.0-or-later"
},
"actions": [
{
"id": "source",
"label": "Source",
"url": "https://git.add-ideas.de/lotobo/archive-tools"
}
]
}