Files
privacy-tools/public/toolbox-app.json
T
zemion 38fa45dbaa
Verify / verify (push) Canceled after 0s
Release Privacy Tools 0.2.0
2026-09-02 10:09:14 +02:00

90 lines
2.1 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.privacy-tools",
"name": "Privacy Tools",
"version": "0.2.0",
"description": "Inspect metadata and create policy-evidenced sharing copies locally.",
"entry": "./",
"icon": "./favicon.svg",
"categories": ["privacy", "files", "security"],
"tags": [
"metadata",
"exif",
"privacy",
"sanitize",
"policy",
"evidence",
"share"
],
"integration": {
"contextVersion": 1,
"launchModes": ["navigate", "new-tab"],
"embedding": "unsupported"
},
"requirements": {
"secureContext": true,
"workers": true,
"indexedDb": false,
"crossOriginIsolated": false,
"topLevelContext": false
},
"io": {
"accepts": [
{
"mediaType": "*/*",
"extensions": [],
"label": "Files for bounded metadata inventory"
}
],
"produces": [
{
"mediaType": "image/jpeg",
"extensions": [".jpg", ".jpeg"],
"label": "Verified re-encoded JPEG"
},
{
"mediaType": "image/png",
"extensions": [".png"],
"label": "Verified re-encoded PNG"
},
{
"mediaType": "image/webp",
"extensions": [".webp"],
"label": "Verified re-encoded WebP"
},
{
"mediaType": "application/json",
"extensions": [".json"],
"label": "Inspection and policy evidence"
},
{
"mediaType": "application/zip",
"extensions": [".zip"],
"label": "Safe-share bundle"
}
]
},
"capabilities": {
"required": ["canvas-2d", "web-crypto", "workers"],
"optional": ["create-image-bitmap"]
},
"privacy": {
"processing": "local",
"fileUploads": true,
"telemetry": false,
"label": "Inputs stay in this browser; nothing is uploaded."
},
"source": {
"repository": "https://git.add-ideas.de/lotobo/privacy-tools",
"license": "GPL-3.0-or-later"
},
"actions": [
{
"id": "source",
"label": "Source",
"url": "https://git.add-ideas.de/lotobo/privacy-tools"
}
]
}